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