From 280d80dd867e096136c6f368be678e947288b2c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luc=C3=A0s?= Date: Mon, 22 May 2023 17:24:25 +0200 Subject: [PATCH] Add container in /chat Took 56 minutes --- src/pages/chat/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pages/chat/index.tsx b/src/pages/chat/index.tsx index 43b58ba..308a6eb 100644 --- a/src/pages/chat/index.tsx +++ b/src/pages/chat/index.tsx @@ -2,10 +2,13 @@ import {useSession} from 'next-auth/react'; import ChatList from '@/components/chat/ChatList'; import LoadingPage from '@/components/LoadingPage'; import {User} from '@prisma/client'; +import {Container} from '@chakra-ui/react'; export default function Chat() { const {data: session, status} = useSession({required: true}); if (status === 'loading') return ; - return ; + return + + ; } \ No newline at end of file