UNPKG

react-layouts-builder

Version:

Lightweight and powerfull react layouts drag and drop

10 lines (9 loc) 304 B
import { LayoutType, OptionsDrop } from 'layouts-builder/interfaces/types'; import { FC } from 'react'; interface DragNDropProps { children: JSX.Element; layout: LayoutType; handleDrop: (options: OptionsDrop) => void; } export declare const DragNDrop: FC<DragNDropProps>; export {};