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

10 lines
202 B
TypeScript

import { GetServerSideProps, NextPage } from 'next'
const Bots = ():NextPage => {
}
export const getServerSideProps: GetServerSideProps = async (context) => {
return { a: 1 }
}
export default Bots