SurfSense/surfsense_web/components/DynamicBlockNoteEditor.tsx

7 lines
200 B
TypeScript
Raw Normal View History

2025-11-23 15:23:31 +05:30
"use client";
import dynamic from "next/dynamic";
// Dynamically import BlockNote editor with SSR disabled
2025-11-23 16:39:23 +05:30
export const BlockNoteEditor = dynamic(() => import("./BlockNoteEditor"), { ssr: false });