core/pages/404.tsx
2021-01-13 21:56:53 +09:00

10 lines
238 B
TypeScript

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