[React] 다양한 Forms
✔ Textarea 태그 : 여러 줄에 걸쳐 긴 텍스트를 입력받기 위한 HTML 태그 • HTML textarea 태그 안녕하세요, 여기에 이렇게 텍스트가 들어가게 됩니다. • React textarea 태그 import React, {useState} from "react"; const styles = { text : { padding: 10, margin: 10, fontSize: 20, color: "green", fontWeight: "bold", border: "3px solid black", borderRadius: 10, width: 500, height: 100, } } function RequestForm(props) { const [value, setValue] = useState('요..
2023. 4. 21.