mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 06:20:24 +00:00
11 lines
191 B
TypeScript
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
|