1<!-- Add checked tag -->
2<input type="checkbox" name="vehicle3" value="Boat" checked>1<input type="checkbox" name="agreement" value="ok" checked>
2<label for="ok">I agree</label>1<input type="checkbox" name="vehicle3" value="Boat" checked>
2
3#If if helps you give it Thumbs up1 <input type="checkbox" checked={props.completed} />
2
3#for props completed is true/false , hence if completed is false then checkbox will not be clicked .
4# if the checkbox is true it will be will be checked
51<input type="checkbox" name="vehicle1" value="Bike">
2
3The checkbox value is 'Bike'.