mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 22:10:24 +00:00
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
import { NextPage } from 'next'
|
|
import { useRouter } from 'next/router'
|
|
|
|
const Reserved:NextPage = () => {
|
|
const router = useRouter()
|
|
router.push('/bots/iu')
|
|
return <></>
|
|
}
|
|
|
|
export default Reserved |