aboutsummaryrefslogtreecommitdiff
path: root/modern/src/components/reports
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/components/reports')
-rw-r--r--modern/src/components/reports/ReportNavbar.js28
-rw-r--r--modern/src/components/reports/ReportSidebar.js31
2 files changed, 0 insertions, 59 deletions
diff --git a/modern/src/components/reports/ReportNavbar.js b/modern/src/components/reports/ReportNavbar.js
deleted file mode 100644
index 16807e8..0000000
--- a/modern/src/components/reports/ReportNavbar.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from 'react';
-import {
- AppBar, Toolbar, Typography, IconButton,
-} from '@material-ui/core';
-import MenuIcon from '@material-ui/icons/Menu';
-import t from '../../common/localization';
-
-const ReportNavbar = ({ setOpenDrawer, reportTitle }) => (
- <AppBar position="fixed" color="inherit">
- <Toolbar>
- <IconButton
- color="inherit"
- aria-label="open drawer"
- edge="start"
- onClick={() => setOpenDrawer(true)}
- >
- <MenuIcon />
- </IconButton>
- <Typography variant="h6" noWrap>
- {t('reportTitle')}
- {' '}
- {` / ${reportTitle}`}
- </Typography>
- </Toolbar>
- </AppBar>
-);
-
-export default ReportNavbar;
diff --git a/modern/src/components/reports/ReportSidebar.js b/modern/src/components/reports/ReportSidebar.js
deleted file mode 100644
index 686fc04..0000000
--- a/modern/src/components/reports/ReportSidebar.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import React from 'react';
-import {
- List, ListItem, ListItemText, ListItemIcon,
-} from '@material-ui/core';
-import { Link, useLocation } from 'react-router-dom';
-
-const ReportSidebar = ({ routes }) => {
- const location = useLocation();
-
- return (
- <List disablePadding style={{ paddingTop: '16px' }}>
- {routes.map((route) => (
- <ListItem
- disableRipple
- component={Link}
- key={route}
- button
- to={route.href}
- selected={route.href === location.pathname}
- >
- <ListItemIcon>
- {route.icon}
- </ListItemIcon>
- <ListItemText primary={route.name} />
- </ListItem>
- ))}
- </List>
- );
-};
-
-export default ReportSidebar;