hackathon-template/app/chat/page.tsx

10 lines
198 B
TypeScript

import { Chat } from "@/components/chat";
import { Container } from "@/components/container";
export default function ChatPage() {
return (
<Container>
<Chat />
</Container>
);
}