From 1a0cc9376f8eb674b30a8ecb5dbf3a05643153d9 Mon Sep 17 00:00:00 2001 From: Hyang-Dan Date: Tue, 2 Dec 2025 22:40:04 +0900 Subject: [PATCH] =?UTF-8?q?issue=20#49=20-=20=ED=99=88=20=ED=99=94?= =?UTF-8?q?=EB=A9=B4=20=EB=9D=BC=EC=9A=B0=ED=8C=85=20=EB=B0=8F=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=20=ED=8C=8C=EC=9D=BC=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 ++ src/ui/page/home/HomePage.tsx | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 src/ui/page/home/HomePage.tsx diff --git a/src/App.tsx b/src/App.tsx index 4ae56a9..8b595bf 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,6 +6,7 @@ import { useAuthStore } from './store/authStore'; import { PageRouting } from './const/PageRouting'; import LoginPage from './ui/page/account/login/LoginPage'; import ResetPasswordPage from './ui/page/account/resetPassword/ResetPasswordPage'; +import { HomePage } from './ui/page/home/HomePage'; function App() { const { authData } = useAuthStore(); @@ -18,6 +19,7 @@ function App() { } path={PageRouting["SIGN_UP"].path} /> } path={PageRouting["RESET_PASSWORD"].path} /> {!authData ? } path="*" /> : null} + } path={PageRouting["HOME"].path} /> diff --git a/src/ui/page/home/HomePage.tsx b/src/ui/page/home/HomePage.tsx new file mode 100644 index 0000000..96cd619 --- /dev/null +++ b/src/ui/page/home/HomePage.tsx @@ -0,0 +1,7 @@ +export const HomePage = () => { + return ( +
+ HomePage +
+ ) +}; \ No newline at end of file