Please help me,
I want to disable my box input value when I active my checklist box...
<FormGroup check className="mb-3">
<Label check htmlFor="partial_shipment">
<Input
type="checkbox"
name="partial_shipment"
id="partial_shipment"
onChange={onChange}
/>{" "}
Apakah Partial Shipment?
</Label>
</FormGroup>
After I checklist my check box, I want disable...my this box input :
<FormGroup>
<Label htmlFor="total_kemasan">Total Kemasan</Label>
<Input
type="number"
name="total_kemasan"
id="total_kemasan"
onChange={onChange}
/>
</FormGroup>
what I must todo??? with REACT HOOKS