Files
deer-flow/web/src/app/page.tsx

18 lines
381 B
TypeScript
Raw Normal View History

2025-04-17 14:26:41 +08:00
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
// SPDX-License-Identifier: MIT
2025-04-17 12:02:23 +08:00
"use client";
2025-04-25 11:59:36 +08:00
import dynamic from "next/dynamic";
import { Suspense } from "react";
2025-04-17 12:02:23 +08:00
2025-04-25 11:59:36 +08:00
const App = dynamic(() => import("./app"), { ssr: false });
2025-04-17 12:02:23 +08:00
export default function HomePage() {
return (
2025-04-25 11:59:36 +08:00
<Suspense fallback={<div>Loading DeerFlow...</div>}>
<App />
</Suspense>
2025-04-17 12:02:23 +08:00
);
}