import React from 'react' import PropTypes from 'prop-types' class CheckboxInput extends React.Component { static propTypes = { value: PropTypes.bool, style: PropTypes.object, onChange: PropTypes.func, } static defaultProps = { value: false, } render() { return } } export default CheckboxInput