import { createBrowserRouter, Navigate } from 'react-router-dom';
import { Layout } from './components';
import {
Home,
Login,
MedicineList,
MedicineDetail,
AddMedicine,
QuickDispense,
Search,
Notifications,
Settings
} from './pages';
const router = createBrowserRouter([
{
path: '/login',
element:
},
{
path: '/',
element:
},
{
path: '/medicines',
element:
},
{
path: '/medicines/add',
element:
},
{
path: '/medicines/:id',
element:
},
{
path: '/medicines/edit/:id',
element:
},
{
path: '/quick-dispense',
element:
},
{
path: '/search',
element:
},
{
path: '/notifications',
element:
},
{
path: '/settings',
element:
},
{
path: '*',
element:
}
]);
export default router;