Skip to content

Commit

Permalink
Merge pull request #315 from SOPT-all/fix/#314/class-register-complet…
Browse files Browse the repository at this point in the history
…ion-route

[!HOTFIX] 클래스 개설 완료 페이지 route 추가
  • Loading branch information
constantly-dev authored Jan 25, 2025
2 parents a9c8872 + 88caf4b commit 3f98862
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 3f98862

Please sign in to comment.