@dndbuilder.com/react
Version:
Drag and drop builder for React
12 lines (11 loc) • 326 B
TypeScript
import { FC } from 'react';
import { Block } from '../../types/block';
type Props = {
blockId?: string;
showBlockLibrary?: boolean;
className?: string;
onBlockAdded?: (block: Block) => void;
};
declare const AddNewSection: FC<Props>;
export default AddNewSection;
//# sourceMappingURL=add-new-section.d.ts.map