From 426bdb638437ca6bbafaff9346c6e96129f95192 Mon Sep 17 00:00:00 2001 From: yyypearl Date: Sat, 18 May 2024 19:04:34 +0900 Subject: [PATCH] =?UTF-8?q?fix(#46):=20=ED=8E=98=EC=9D=B4=EC=A7=80?= =?UTF-8?q?=EB=AA=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/mypage/children/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/mypage/children/page.tsx b/src/app/mypage/children/page.tsx index 9b4f02f..216f844 100644 --- a/src/app/mypage/children/page.tsx +++ b/src/app/mypage/children/page.tsx @@ -22,7 +22,7 @@ interface Child { allergy: string[]; } -export const page = () => { +export const MyPage = () => { const [child, setChild] = useState({ name: "김동우", school: "신용산초등학교", @@ -175,7 +175,7 @@ export const page = () => { ); }; -export default page; +export default MyPage; const Top = styled.div` width: 100%;