Ajouter un client

This commit is contained in:
2026-06-11 07:27:37 -04:00
parent c811c373d5
commit ccafc24f72
6 changed files with 102 additions and 1 deletions
+2
View File
@@ -7,6 +7,7 @@ import Profile from './pages/Profile';
import NotFound from './pages/NotFound';
import AddBook from './pages/AddBook';
import BookDetail from './pages/BookDetail';
import Customers from './pages/Customers';
export default function App() {
return (
@@ -19,6 +20,7 @@ export default function App() {
<Route path="*" element={<NotFound />} />
<Route path="books/new" element={<AddBook />} />
<Route path="books/:bookId" element={<BookDetail />} />
<Route path="customers" element={<Customers />} />
</Route>
</Routes>
);