core/pages/bots/[id].tsx
2021-01-05 11:40:44 +09:00

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