mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
10 lines
202 B
TypeScript
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 |