hackathon-template/app/chat/page.tsx
2026-05-08 20:24:34 +12:00

11 lines
242 B
TypeScript

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