Add 404 page

This commit is contained in:
jwu-fisker
2021-01-07 21:34:39 -08:00
parent d2d7638e81
commit ab0453c09b
4 changed files with 73 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
import { Typography } from "@material-ui/core";
import React from "react";
import useStyles from '../Styles';
const PageNotFound = () => {
const classes = useStyles();
return (
<div className={classes.paper}>
<Typography component="h1" variant="h2">
Page Not Found
</Typography>
</div>
);
}
export default PageNotFound;