SurfSense/surfsense_web/components/DynamicBlockNoteEditor.tsx
2025-11-23 15:23:31 +05:30

9 lines
206 B
TypeScript

"use client";
import dynamic from "next/dynamic";
// Dynamically import BlockNote editor with SSR disabled
export const BlockNoteEditor = dynamic(
() => import("./BlockNoteEditor"),
{ ssr: false }
);