feat: add novel editor

This commit is contained in:
Jiang Feng
2025-04-26 00:20:49 +08:00
parent 26c2679b1a
commit ba8c5fbcd3
22 changed files with 3760 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
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>
);
}