UNPKG

mfg-ui-components

Version:

React UI library with reusable components

12 lines (11 loc) 264 B
import React from 'react'; interface DraggableItem { id: number; content: string; } interface DragAndDropProps { items: any[]; onDrop: (items: DraggableItem[]) => void; } declare const Dragable: React.FC<DragAndDropProps>; export default Dragable;