import React, { FunctionComponent } from 'react'; import { Checkbox as AntdCheckbox } from 'antd'; import { IReactOptionsComponent } from '@wowpic/xform-types'; const Checkbox: FunctionComponent = ({ onChange, value, ...props }) => { if (props.options && props.options.length > 0) { return ( ); } return ( onChange(e.target.checked)} {...props} /> ); }; export default Checkbox;