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