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