feat: Login, UserRegister, PasswordReset 라우터 연결

This commit is contained in:
정기영 2024-07-22 13:29:08 +09:00
parent 56d2d775e6
commit 50946e0331

View File

@ -14,6 +14,9 @@ const QuestionListPage = lazy(async () => await import('./pages/QuestionListPage
const QuestionDetailPage = lazy(async () => await import('./pages/QuestionDetailPage'));
const CreateQuestionPage = lazy(async () => await import('./pages/CreateQuestionPage'));
const NoticeWritePage = lazy(async () => await import('./pages/NoticeWritePage/NoticeWritePage'));
const LoginPage = lazy(async () => await import('./pages/LoginPage'));
const UserRegisterPage = lazy(async () => await import('./pages/UserRegisterPage'));
const PasswordResetPage = lazy(async () => await import('./pages/PasswordResetPage'));
const router = createBrowserRouter([
{
@ -73,6 +76,18 @@ const router = createBrowserRouter([
},
],
},
{
path: 'login',
element: <LoginPage />,
},
{
path: 'register',
element: <UserRegisterPage />,
},
{
path: 'password-reset',
element: <PasswordResetPage />,
},
],
},
]);