@dndbuilder.com/react
Version:
Drag and drop builder for React
13 lines (12 loc) • 333 B
TypeScript
import { FC } from 'react';
type Props = {
blockId: string;
blockType: string;
index: number;
parentId: string;
attributes: Record<string, string>;
children: React.ReactNode;
};
declare const EditorBlockWrapper: FC<Props>;
export default EditorBlockWrapper;
//# sourceMappingURL=editor-block-wrapper.d.ts.map