Adding Cart page

This commit is contained in:
Pierret Hugo
2024-10-19 14:00:38 +02:00
parent 5516900b1b
commit 129fcb672c
7 changed files with 502 additions and 166 deletions

View File

@@ -7,7 +7,7 @@ import { store, persistor } from "./services/store";
import PosterSelector from "./components/PosterSelector";
import PosterGallery from "./components/PosterGallery";
import UploadDiary from "./components/UploadDiary";
import GlobalDownloadButton from "./components/DownloadButton";
import Cart from "./components/Cart";
function App() {
return (
@@ -23,11 +23,11 @@ function App() {
path="/posters/:movieName/:movieYear"
element={<PosterGallery />}
/>
<Route path="/Cart" element={<Cart />} />
</Routes>
</div>
</Router>
}
<GlobalDownloadButton />
</PersistGate>
</Provider>
);