Is there a way to validate a FormSection in Redux Forms?
I have two checkboxes in the FormSection and I am looking to make sure at least one is checked.
The required function is already available to other Field components, this is not working is there some workaround?
<FormSection name="fieldName" validate={required}>
<div className="form-body">
<Field
label="one"
name="one"
id="one"
component={CheckBox}
/>
<Field
label="two"
name="two"
id="two"
component={CheckBox}
/>
</div>
</FormSection>