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 up
1 <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
5