core/pages/404.tsx
2021-01-12 18:49:06 +09:00

11 lines
286 B
TypeScript

import { NextPage } from 'next'
import Container from '../components/Container'
import Notice from '../components/Notice'
import { ErrorText } from '../utils/Constants'
const NotFound: NextPage = () => {
return <Notice header='404' desc={ErrorText[404]} />
}
export default NotFound