diff options
author | eug-vs <eug-vs@keemail.me> | 2020-07-03 19:02:06 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-07-03 19:02:06 +0300 |
commit | 2247e281f7f1c8c59ff758053dcb7b2c4f28d4a9 (patch) | |
tree | d5460c2a27b0029ecb1cead8c661548d6ed6070b /src/pages/NotificationsPage/NotificationsPage.tsx | |
parent | cb521315c2291eda6b273b5f8a2e014c24ea9758 (diff) | |
download | which-ui-2247e281f7f1c8c59ff758053dcb7b2c4f28d4a9.tar.gz |
feat: create a bunch of empty pages
Diffstat (limited to 'src/pages/NotificationsPage/NotificationsPage.tsx')
-rw-r--r-- | src/pages/NotificationsPage/NotificationsPage.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/pages/NotificationsPage/NotificationsPage.tsx b/src/pages/NotificationsPage/NotificationsPage.tsx new file mode 100644 index 0000000..56243f9 --- /dev/null +++ b/src/pages/NotificationsPage/NotificationsPage.tsx @@ -0,0 +1,22 @@ +import React, { useState } from 'react'; +import { makeStyles } from '@material-ui/core/styles'; +import { Typography } from '@material-ui/core'; + +const useStyles = makeStyles({ + root: { + 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; + |