Skip to content

Commit

Permalink
Merge pull request #32 from GenerateNU/cc-13-collection-management-co…
Browse files Browse the repository at this point in the history
…mponents

Cc 13 collection management components
  • Loading branch information
matherg authored Oct 17, 2023
2 parents 53821b5 + 9fc8507 commit 86d1df1
Show file tree
Hide file tree
Showing 8 changed files with 567 additions and 25 deletions.
195 changes: 171 additions & 24 deletions client/package-lock.json

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

3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
Expand All @@ -30,6 +31,6 @@
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5"
"vite": "^4.4.11"
}
}
2 changes: 2 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
import { BrowserRouter as Router, Route, Routes } from "react-router-dom";
import HomePage from "./pages/HomePage";
import RequestsPage from "./pages/RequestsPage";
import CollectionPage from './pages/CollectionsPage';

function App() {
return (
<Router>
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/requests/" element={<RequestsPage />} />
<Route path="/collections/" element={<CollectionPage />} />
</Routes>
</Router>
);
Expand Down
Loading

0 comments on commit 86d1df1

Please sign in to comment.