UNPKG

fx-form-widget

Version:
10 lines (9 loc) 214 B
import * as React from 'react'; interface RadioProps { schema?: any; onChange: Function; value: any; isInit?: boolean; } declare const RadioWidget: React.FC<RadioProps>; export default RadioWidget;