부모 파일 코드 import React, {useState} from 'react'; import styled from "styled-components"; import Post from "../component/post"; function PostAdd() { const [addressForm, setAddressForm] = useState({ name: "", address: "", }); const changeAddress = (e:React.ChangeEvent) => { const {name, value} = e.target; setAddressForm({ ...addressForm, [name]: value, }); }; const PostWrap = styled.div` margin: 2r..