UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

10 lines (9 loc) 323 B
import { FunctionComponent } from 'react'; import { DraggableProvided } from 'react-beautiful-dnd'; import Record from '../../../data-set/Record'; export interface ItemTitleProps { record: Record; provided?: DraggableProvided; } declare const ItemTitle: FunctionComponent<ItemTitleProps>; export default ItemTitle;