add alerts

This commit is contained in:
Pritimay Sarkar
2023-09-19 22:43:46 +05:30
parent 4ce2178af5
commit 97b592ce72
5 changed files with 72 additions and 2 deletions

View File

@@ -13,6 +13,7 @@ import TestAnalytics from './components/TestAnalytics';
import WorldMap from './components/WorldMap';
import RegistraionChart from './RegistraionChart';
import Calibrations from './components/Calibrations';
import Alerts from './components/Alerts';
const router = createBrowserRouter([
{
@@ -43,6 +44,10 @@ const router = createBrowserRouter([
path: "/op",
element: <AppOp />,
},
{
path: "/alerts",
element: <Alerts />,
},
]);