UNPKG

@magicbe/design

Version:

React + Antd Drag Drop Visual design

11 lines (10 loc) 298 B
import React from "react"; import { WidgetFunctionComponent } from "../widgets/types"; export interface WidgetProps { Component?: WidgetFunctionComponent; widget: string; _text_to_class_?: string; } /**组件渲染 */ declare const Widget: React.FC<WidgetProps>; export default Widget;