coockies und so
This commit is contained in:
@@ -21,6 +21,12 @@ const Checkout = lazy(() => import('./pages/Checkout'));
|
||||
const MockPayment = lazy(() => import('./pages/MockPayment'));
|
||||
const Success = lazy(() => import('./pages/Success'));
|
||||
const Admin = lazy(() => import('./pages/Admin'));
|
||||
const FAQ = lazy(() => import('./pages/FAQ'));
|
||||
const Shipping = lazy(() => import('./pages/Shipping'));
|
||||
const Returns = lazy(() => import('./pages/Returns'));
|
||||
const Contact = lazy(() => import('./pages/Contact'));
|
||||
const Privacy = lazy(() => import('./pages/Privacy'));
|
||||
const Cookies = lazy(() => import('./pages/Cookies'));
|
||||
|
||||
function App() {
|
||||
return (
|
||||
@@ -42,6 +48,12 @@ function App() {
|
||||
<Route path="/mock-payment" element={<MockPayment />} />
|
||||
<Route path="/success" element={<Success />} />
|
||||
<Route path="/admin" element={<Admin />} />
|
||||
<Route path="/faq" element={<FAQ />} />
|
||||
<Route path="/shipping" element={<Shipping />} />
|
||||
<Route path="/returns" element={<Returns />} />
|
||||
<Route path="/contact" element={<Contact />} />
|
||||
<Route path="/privacy" element={<Privacy />} />
|
||||
<Route path="/cookies" element={<Cookies />} />
|
||||
</Routes>
|
||||
</Suspense>
|
||||
</RouteTransition>
|
||||
|
||||
Reference in New Issue
Block a user