From 1b8fae11eb0ef9966c21790e750e5dc2441df775 Mon Sep 17 00:00:00 2001 From: seung365 Date: Wed, 7 Aug 2024 16:58:08 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20mypage=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/MyPage/index.tsx | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/pages/MyPage/index.tsx b/src/pages/MyPage/index.tsx index 6c1f88a..69792f7 100644 --- a/src/pages/MyPage/index.tsx +++ b/src/pages/MyPage/index.tsx @@ -1,3 +1,32 @@ +import { Grid, GridItem } from '@chakra-ui/react'; +import styled from '@emotion/styled'; + export const MyPage = () => { - return
마이 페이지
; + return ( + + + +

User Information

+ {/* user information */} +
+ +

User History

+ {/* user history */} +
+
+
+ ); }; + +export const Wrapper = styled.div` + width: 100%; + height: 1000px; +`;