mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-27 15:54:48 +08:00
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
|
|
import ReportEditor from "~/components/editor";
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
return (
|
||
|
|
<main className="flex h-full w-full">
|
||
|
|
<div className="flex h-screen flex-auto">
|
||
|
|
<ReportEditor />
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|