UNPKG

fx-form-widget

Version:
10 lines (9 loc) 215 B
import * as React from 'react'; import './index.less'; interface TextAreaProps { schema?: any; onChange: Function; value: any; } declare const Textarea: React.FC<TextAreaProps>; export default Textarea;