mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 22:30:23 +00:00
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import { GetServerSideProps, NextPage } from 'next'
|
|
import Container from '../../components/Container'
|
|
|
|
const Bots:NextPage = () => {
|
|
return <Container>
|
|
<h1>GG</h1>
|
|
</Container>
|
|
}
|
|
|
|
export const getServerSideProps: GetServerSideProps = async (context) => {
|
|
return { props: { data: {} } }
|
|
}
|
|
export default Bots |