mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { NextPage } from 'next'
|
|
import dynamic from 'next/dynamic'
|
|
|
|
const Redirect = dynamic(() => import('@components/Redirect'))
|
|
|
|
const Discord: NextPage = () => {
|
|
return <Redirect to='/panel' />
|
|
}
|
|
|
|
export default Discord
|