UNPKG

@magicbe/design

Version:

React + Antd Drag Drop Visual design

11 lines (10 loc) 251 B
import React, { ReactNode } from "react"; interface DraggableProps { children?: ReactNode; className?: string; widget: string; group?: string; } /**推拽 */ declare const Draggable: React.FC<DraggableProps>; export default Draggable;