Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bbrf frontend #14

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@
"@material-ui/icons": "^4.11.2",
"@mui/material": "^5.5.3",
"@mui/system": "^5.5.2",
"@mui/x-date-pickers": "^7.22.2",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^1.1.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
7 changes: 7 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ import AlertPopup from './components/AlertPopup.tsx';
import InviteRegisterPage from './Authentication/InviteRegisterPage.tsx';
import Landing from './Landing/Landing.tsx';
import TempAdminDashboardPage from './AdminDashboard/TempAdminDashboardPage.tsx';
import BirthdayBoxRequestForm from './components/BirthdayBoxRequestForm/BirthdayBoxRequestForm.tsx';
import SuccessPage from './components/BirthdayBoxRequestForm/SuccessPage.tsx';
import ChapterDashboardPage from './Chapters/ChapterDashboardPage.tsx';

function App() {
Expand All @@ -42,6 +44,11 @@ function App() {
<Route path="/login" element={<LoginPage />} />
{/* <Route path="/admin" element={<TempAdminDashboardPage />} /> */}
{/* <Route path="/admin" element={<TempAdminDashboardPage />} /> */}
<Route
path="/request-form/:chapterId"
element={<BirthdayBoxRequestForm />}
/>
<Route path="/success" element={<SuccessPage />} />
<Route
path="/verify-account/:token"
element={<VerifyAccountPage />}
Expand Down
Loading