Skip to content

Commit

Permalink
fix: 클래스 개설 완료 페이지 route 추가 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
constantly-dev committed Jan 25, 2025
1 parent a9c8872 commit 88caf4b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/routes/router.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { lazy } from 'react';
import { createBrowserRouter } from 'react-router-dom';
import { LoginCallback } from '@/pages/auth';
import ClassRegisterCompletion from '@/pages/instructor/ClassRegisterCompletion';
import { CheckoutPage } from '@/pages/reservation/components/TossPayments/CheckOut/CheckOut';
import { FailPage } from '@/pages/reservation/components/TossPayments/Fail/Fail';
import { SuccessPage } from '@/pages/reservation/components/TossPayments/Success/Success';
Expand Down Expand Up @@ -66,6 +67,10 @@ export const router = createBrowserRouter([
path: ROUTES_CONFIG.classRegister.path,
element: <ClassRegister />,
},
{
path: ROUTES_CONFIG.classRegisterCompletion.path,
element: <ClassRegisterCompletion />,
},
{
path: ROUTES_CONFIG.instructorRegister.path,
element: <InstructorRegister />,
Expand Down

0 comments on commit 88caf4b

Please sign in to comment.