UNPKG

@dndbuilder.com/react

Version:

Drag and drop builder for React

12 lines (11 loc) 349 B
import { Block } from '../../types/block'; import { FC, ReactNode } from 'react'; type AddContainerProps = { blockId?: string; children: ReactNode; position?: number; onBlockAdded?: (block: Block) => void; }; declare const AddContainer: FC<AddContainerProps>; export default AddContainer; //# sourceMappingURL=add-container.d.ts.map