From 9d8a6e476537c4671327e4c6239d55abdace8fe0 Mon Sep 17 00:00:00 2001 From: Sungwoo Park Date: Sat, 23 May 2020 00:33:18 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=ED=94=84=EB=A1=9C=ED=95=84=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=B7=B0=20=EC=B6=94=EA=B0=80=20(#59)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 4 + .../atoms/Button/Button.stories.tsx | 10 +- .../web/components/atoms/Button/Button.tsx | 34 +++- .../components/atoms/TextField/TextField.tsx | 6 +- .../organisms/Profile/ProfileInfo.tsx | 171 ++++++++++++++++++ .../organisms/Profile/ProfileWithdraw.tsx | 85 +++++++++ .../web/components/pages/Profile/Profile.tsx | 30 +++ .../web/components/atoms/Button/IButton.ts | 9 +- .../organisms/Profile/IProfileInfo.ts | 5 + .../web/components/pages/Profile/IProfile.ts | 5 + src/utils/routes.ts | 2 + 11 files changed, 344 insertions(+), 17 deletions(-) create mode 100644 src/frameworks/web/components/organisms/Profile/ProfileInfo.tsx create mode 100644 src/frameworks/web/components/organisms/Profile/ProfileWithdraw.tsx create mode 100644 src/frameworks/web/components/pages/Profile/Profile.tsx create mode 100644 src/interfaces/frameworks/web/components/organisms/Profile/IProfileInfo.ts create mode 100644 src/interfaces/frameworks/web/components/pages/Profile/IProfile.ts diff --git a/src/App.tsx b/src/App.tsx index 18050e3..049f115 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,6 +11,7 @@ import SignIn from 'frameworks/web/components/pages/SignIn/SignIn'; import SignUp from 'frameworks/web/components/pages/SignUp/SignUp'; import Footer from 'frameworks/web/components/organisms/Footer/Footer'; import SpeakerApply from 'frameworks/web/components/pages/SpeakerApply/SpeakerApply'; +import Profile from 'frameworks/web/components/pages/Profile/Profile'; import StatusPage from 'frameworks/web/components/pages/StatusPage/StatusPage'; import apolloClient, { initStorage } from 'frameworks/web/apollo'; @@ -48,6 +49,9 @@ function App() { + + +