From 205bc8150b199b467ba7c381daf22c93eb6638d2 Mon Sep 17 00:00:00 2001 From: Junseo Park Date: Sat, 27 Feb 2021 13:48:37 +0900 Subject: [PATCH] feat: grid responsive --- pages/developers/applications/index.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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 {