core/pages/404.tsx
2021-01-04 20:11:44 +09:00

11 lines
191 B
TypeScript

import { NextPage } from 'next'
import Container from '../components/Container'
const NotFound: NextPage = () => {
return <Container>
<h1>GG</h1>
</Container>
}
export default NotFound