'use client'; import { DndProvider } from 'react-dnd'; import { HTML5Backend } from 'react-dnd-html5-backend'; import { DndPlugin } from '@platejs/dnd'; import { BlockDraggable } from '@/components/ui/block-draggable'; export const DndKit = [ DndPlugin.configure({ options: { enableScroller: true, }, render: { aboveNodes: BlockDraggable, aboveSlate: ({ children }) => ( {children} ), }, }), ];