diff --git a/src/components/inputs/CheckboxInput.jsx b/src/components/inputs/CheckboxInput.jsx index 94e8902..3715d0f 100644 --- a/src/components/inputs/CheckboxInput.jsx +++ b/src/components/inputs/CheckboxInput.jsx @@ -3,11 +3,15 @@ import PropTypes from 'prop-types' class CheckboxInput extends React.Component { static propTypes = { - value: PropTypes.bool.isRequired, + value: PropTypes.bool, style: PropTypes.object, onChange: PropTypes.func, } + static defaultProps = { + value: false, + } + render() { return