Spaces:
Build error
Build error
"use client"; | |
import Header from "@/app/components/header"; | |
import Main from "@/app/components/ui/main-container"; | |
import ChatSection from "@/app/components/chat-section"; | |
export default function Chat() { | |
return ( | |
<Main> | |
<Header /> | |
<ChatSection /> | |
</Main> | |
); | |
} | |