@dndbuilder.com/react
Version:
Drag and drop builder for React
11 lines (10 loc) • 356 B
TypeScript
import { FC } from 'react';
import { Block, BlockMeta } from '../../types/block';
type EditorRenderChildrenProps = {
blocks: (string | Block)[];
meta?: BlockMeta;
isEditable: boolean;
};
declare const EditorRenderChildren: FC<EditorRenderChildrenProps>;
export default EditorRenderChildren;
//# sourceMappingURL=editor-render-children.d.ts.map