13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
import { ArrowBack as ArrowBackIcon } from "@mui/icons-material";
|
|
import { Typography } from "@mui/material";
|
|
import React from "react";
|
|
import { BackItem, CommonMenuList, Headline, NavList } from "../component/mod";
|
|
|
|
export const NotFoundPage = () => {
|
|
const menu = CommonMenuList();
|
|
return (
|
|
<Headline menu={menu}>
|
|
<Typography variant="h2">404 Not Found</Typography>
|
|
</Headline>
|
|
);
|
|
};
|