import React from "react"; import Checkbox from "@material-ui/core/Checkbox"; import FormControlLabel from "@material-ui/core/FormControlLabel"; const CheckboxField = ({ input, label }) => { const { value, onChange } = input; // @TODO this isnt unchecking properly return ( } /> ); }; export default CheckboxField;