Files
firecrawl/examples/example_web_apps/local-website-chatbot/app/page.tsx
T

8 lines
209 B
TypeScript
Raw Normal View History

2024-06-21 15:40:46 -04:00
import { ChatWindow } from "@/components/ChatWindow";
export default function Home() {
return (
<ChatWindow placeholder="Try asking something about the document you just uploaded!"></ChatWindow>
);
}