diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index edc200d6..3e87c15b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -30,6 +30,7 @@ import SampleContextDispatcherContext from "./contexts/SampleContextDispatcherCo import EditTeamInfoPage from "./components/pages/EditTeamPage"; import HooksDemo from "./components/pages/HooksDemo"; import VolunteerPostingsPage from "./components/pages/volunteer/posting/VolunteerPostingsPage"; +import CreatePostingShiftsPage from "./components/pages/admin/posting/CreatePostingShiftsPage"; import customTheme from "./theme"; import { AuthenticatedUser } from "./types/AuthTypes"; @@ -109,6 +110,11 @@ const App = (): React.ReactElement => { path={Routes.VOLUNTEER_POSTINGS_PAGE} component={VolunteerPostingsPage} /> + diff --git a/frontend/src/components/pages/admin/posting/CreatePostingShiftsPage.tsx b/frontend/src/components/pages/admin/posting/CreatePostingShiftsPage.tsx new file mode 100644 index 00000000..1524d29d --- /dev/null +++ b/frontend/src/components/pages/admin/posting/CreatePostingShiftsPage.tsx @@ -0,0 +1,7 @@ +import React from "react"; + +const CreatePostingShiftsPage = (): React.ReactElement => { + return
; +}; + +export default CreatePostingShiftsPage; diff --git a/frontend/src/constants/Routes.ts b/frontend/src/constants/Routes.ts index 9895a76a..d56f1d19 100644 --- a/frontend/src/constants/Routes.ts +++ b/frontend/src/constants/Routes.ts @@ -19,3 +19,5 @@ export const UPDATE_ENTITY_PAGE = "/entity/update"; export const HOOKS_PAGE = "/hooks"; export const VOLUNTEER_POSTINGS_PAGE = "/volunteer/postings"; + +export const ADMIN_POSTING_CREATE_SHIFTS_PAGE = "/admin/posting/create/shifts";