diff options
Diffstat (limited to 'src/pages/NotificationsPage/NotificationsPage.tsx')
-rw-r--r-- | src/pages/NotificationsPage/NotificationsPage.tsx | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/pages/NotificationsPage/NotificationsPage.tsx b/src/pages/NotificationsPage/NotificationsPage.tsx deleted file mode 100644 index 064fbd4..0000000 --- a/src/pages/NotificationsPage/NotificationsPage.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react'; -import { makeStyles } from '@material-ui/core/styles'; -import { Typography } from '@material-ui/core'; - -const useStyles = makeStyles(theme => ({ - root: { - marginTop: theme.spacing(25), - textAlign: 'center' - } -})); - -const NotificationsPage: React.FC = () => { - const classes = useStyles(); - - return ( - <Typography variant="h4" className={classes.root}> - Sorry, this page is being constructed yet. - </Typography> - ); -}; - -export default NotificationsPage; - |