add map and icons pkg

This commit is contained in:
prisar
2023-07-27 10:31:15 +05:30
parent 8a43d32006
commit 99dedf407a
9 changed files with 180 additions and 6 deletions

View File

@@ -9,6 +9,8 @@ import App from './App';
import reportWebVitals from './reportWebVitals';
import Devices from './components/Devices';
import TestAnalytics from './components/TestAnalytics';
import WorldMap from './components/WorldMap';
import RegistraionChart from './RegistraionChart';
const router = createBrowserRouter([
{
@@ -26,6 +28,10 @@ const router = createBrowserRouter([
{
path: "/analytics",
element: <TestAnalytics />,
},
{
path: "/map",
element: <RegistraionChart />,
}
]);