SurfSense/surfsense_web/components/DynamicBlockNoteEditor.tsx

7 lines
200 B
TypeScript
Raw Permalink Normal View History

2025-11-23 17:53:31 +08:00
"use client";
import dynamic from "next/dynamic";
// Dynamically import BlockNote editor with SSR disabled
2025-11-23 19:09:23 +08:00
export const BlockNoteEditor = dynamic(() => import("./BlockNoteEditor"), { ssr: false });