UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

9 lines (8 loc) 264 B
import * as React from 'react'; export interface NodeContentProps { data?: any; canedit?: number; customStyles?: any; onTitleEditRequest?: (id: string, title: string) => void; } export declare const NodeContent: React.FC<NodeContentProps>;