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