11 lines
242 B
TypeScript
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>
|
|
);
|
|
}
|