SurfSense/surfsense_web/components/DynamicBlockNoteEditor.tsx

10 lines
206 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
export const BlockNoteEditor = dynamic(
() => import("./BlockNoteEditor"),
{ ssr: false }
);