diff options
Diffstat (limited to 'src/containers/Notifications')
-rw-r--r-- | src/containers/Notifications/Notifications.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/containers/Notifications/Notifications.tsx b/src/containers/Notifications/Notifications.tsx new file mode 100644 index 0000000..0648eb5 --- /dev/null +++ b/src/containers/Notifications/Notifications.tsx @@ -0,0 +1,23 @@ +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 Notifications: React.FC = () => { + const classes = useStyles(); + + return ( + <Typography variant="h4" className={classes.root}> + Sorry, this page is being constructed yet. + </Typography> + ); +}; + +export default Notifications; + |