blob: 064fbd4096050b5079a499e9cfbd764fa0a3108a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 NotificationsPage: React.FC = () => {
const classes = useStyles();
return (
<Typography variant="h4" className={classes.root}>
Sorry, this page is being constructed yet.
</Typography>
);
};
export default NotificationsPage;
|