fix: error

This commit is contained in:
원더 2021-01-05 11:40:44 +09:00
parent 2ce975e661
commit 648d99f8f5

View File

@ -1,10 +1,13 @@
import { GetServerSideProps, NextPage } from 'next'
import Container from '../../components/Container'
const Bots = ():NextPage => {
const Bots:NextPage = () => {
return <Container>
<h1>GG</h1>
</Container>
}
export const getServerSideProps: GetServerSideProps = async (context) => {
return { a: 1 }
return { props: { data: {} } }
}
export default Bots