This commit is contained in:
Pritimay Sarkar
2023-08-23 20:57:33 +05:30
parent 16b3f521d4
commit 47d348d791
8 changed files with 173 additions and 4 deletions

View File

@@ -4,6 +4,8 @@ import AppsOutlinedIcon from '@mui/icons-material/AppsOutlined';
import TestAnalytics from "../components/TestAnalytics";
import HomePage from '../components/HomePage';
import Devices from '../components/Devices';
import { Download } from '@mui/icons-material';
import ExportData from '../components/ExportData';
const appRoutes = [
{
@@ -28,7 +30,16 @@ const appRoutes = [
displayText: "Insights",
icon: <AppsOutlinedIcon />
}
}
},
{
path: "/hposdata",
element: <ExportData />,
state: "hposdata",
sidebarProps: {
displayText: "Data Download",
icon: <Download />
}
},
]
export default appRoutes;