Skip to content

Commit

Permalink
Merge pull request #58 from prasadhonrao/test-pr-56
Browse files Browse the repository at this point in the history
Add AddBootcamPage and update primary routers
  • Loading branch information
prasadhonrao authored Sep 30, 2024
2 parents 3678912 + a1f80f4 commit f805921
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 131 deletions.
4 changes: 2 additions & 2 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion ui/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import LoginPage from './pages/LoginPage';
import RegisterPage from './pages/RegisterPage';
import AboutPage from './pages/AboutPage';
import BootcampsPage from './pages/BootcampsPage';
import AddBootcampPage from './pages/AddBootcampPage';

function App() {
return (
Expand All @@ -17,7 +18,8 @@ function App() {
<Route exact path="/login" element={<LoginPage />} />
<Route exact path="/register" element={<RegisterPage />} />
<Route path="/about" element={<AboutPage />} />
<Route path="/browse" element={<BootcampsPage />} />
<Route path="/bootcamps" element={<BootcampsPage />} />
<Route path="/bootcamps/add" element={<AddBootcampPage />} />
</Routes>
</div>
</Router>
Expand Down
Loading

0 comments on commit f805921

Please sign in to comment.