Spaces:
Build error
Build error
File size: 288 Bytes
0702eb8 ebd245c 0702eb8 ebd245c 0702eb8 ebd245c 0702eb8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"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>
);
}
|