Spaces:
Sleeping
Sleeping
| import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom'; | |
| import Layout from './components/Layout'; | |
| import Login from './pages/Login'; | |
| import Dashboard from './pages/Dashboard'; | |
| import Orders from './pages/Orders'; | |
| import Products from './pages/Products'; | |
| import Settings from './pages/Settings'; | |
| function App() { | |
| return ( | |
| <BrowserRouter> | |
| <Routes> | |
| <Route path="/login" element={<Login />} /> | |
| <Route path="/" element={<Layout />}> | |
| <Route index element={<Dashboard />} /> | |
| <Route path="orders" element={<Orders />} /> | |
| <Route path="products" element={<Products />} /> | |
| <Route path="settings" element={<Settings />} /> | |
| </Route> | |
| <Route path="*" element={<Navigate to="/" replace />} /> | |
| </Routes> | |
| </BrowserRouter> | |
| ); | |
| } | |
| export default App; | |