Enregistrer un livre

This commit is contained in:
2026-06-11 05:15:30 -04:00
parent 4008ef4a9b
commit 2c0f30f0a2
4 changed files with 113 additions and 0 deletions
+2
View File
@@ -5,6 +5,7 @@ import Books from './pages/Books';
import Orders from './pages/Orders';
import Profile from './pages/Profile';
import NotFound from './pages/NotFound';
import AddBook from './pages/AddBook';
export default function App() {
return (
@@ -15,6 +16,7 @@ export default function App() {
<Route path="orders" element={<Orders />} />
<Route path="profile" element={<Profile />} />
<Route path="*" element={<NotFound />} />
<Route path="books/new" element={<AddBook />} />
</Route>
</Routes>
);