khronoz's picture
Update <main> container to be reuseable
ebd245c
raw
history blame
288 Bytes
"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>
);
}