Skip to content

Commit

Permalink
Merge pull request #42 from hack4impact-upenn/program-outcomes
Browse files Browse the repository at this point in the history
Program outcomes
  • Loading branch information
roshanbellary authored Nov 2, 2024
2 parents c98d366 + 6af47f2 commit 7e2286e
Show file tree
Hide file tree
Showing 10 changed files with 3,572 additions and 426 deletions.
10 changes: 10 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import EmailResetPasswordPage from './Authentication/EmailResetPasswordPage.tsx'
import ResetPasswordPage from './Authentication/ResetPasswordPage.tsx';
import AlertPopup from './components/AlertPopup.tsx';
import InviteRegisterPage from './Authentication/InviteRegisterPage.tsx';
import KitchenOutcome from './components/forms/KitchenOutcome.tsx';
import ProgramOutcome from './components/forms/ProgramOutcome.tsx';

function App() {
return (
Expand All @@ -35,6 +37,14 @@ function App() {
<Routes>
{/* Routes accessed only if user is not authenticated */}
<Route element={<UnauthenticatedRoutesWrapper />}>
<Route
path="/kitchen-outcome-test"
element={<KitchenOutcome />}
/>
<Route
path="/program-outcome-test"
element={<ProgramOutcome />}
/>
<Route path="/login" element={<LoginPage />} />
<Route path="/register" element={<RegisterPage />} />
<Route
Expand Down
Loading

0 comments on commit 7e2286e

Please sign in to comment.