8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { ChatWindow } from "@/components/ChatWindow";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<ChatWindow placeholder="Try asking something about the document you just uploaded!"></ChatWindow>
|
|
);
|
|
}
|