diff --git a/pages/developers/applications/index.tsx b/pages/developers/applications/index.tsx index d28b04b..3f1b1cd 100644 --- a/pages/developers/applications/index.tsx +++ b/pages/developers/applications/index.tsx @@ -7,20 +7,19 @@ import { parseCookie } from '@utils/Tools' import { Bot, User } from '@types' const Application = dynamic(() => import('@components/Application')) -const Container = dynamic(() => import('@components/Container')) -const SEO = dynamic(() => import('@components/SEO')) +const DeveloperLayout = dynamic(() => import('@components/DeveloperLayout')) const Applications: NextPage = ({ user }) => { - return - + return

나의 봇

한국 디스코드봇 리스트 API를 활용하여 봇에 다양한 기능을 추가해보세요.

-
+
{ (user.bots as Bot[]).map(bot => ) }
- + + } interface ApplicationsProps {