//App.jsx
<input
className="countryName"
type="text"
placeholder="국가 입력"
value={countryName}
onChange={(e) => setCountryName(e.target.value)} // 입력 시 상태 업데이트
/>
//App.jsx
<MedalForm
countryName={countryName}
setCountryName={setCountryName}/>
//MedalForm.jsx
const MedalForm = ({countryName,setCountryName,})
'sparta > REACT' 카테고리의 다른 글
[REACT] (1) | 2024.11.01 |
---|---|
[REACT] React Hooks (0) | 2024.10.31 |
[React] main.jsx는 뭘까? (1) | 2024.10.30 |
[REACT] 에러 (계속 수정중) (0) | 2024.10.30 |
[REACT]회원가입 폼 (0) | 2024.10.29 |