diff --git a/src/routes/router.tsx b/src/routes/router.tsx index 5c6ddc79..b03273e3 100644 --- a/src/routes/router.tsx +++ b/src/routes/router.tsx @@ -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'; @@ -66,6 +67,10 @@ export const router = createBrowserRouter([ path: ROUTES_CONFIG.classRegister.path, element: , }, + { + path: ROUTES_CONFIG.classRegisterCompletion.path, + element: , + }, { path: ROUTES_CONFIG.instructorRegister.path, element: ,