changed spacing and checkboxes

This commit is contained in:
Aoife
2020-11-20 22:46:44 -05:00
parent 9ba5e1d01b
commit c8463a0db8
7 changed files with 48 additions and 7 deletions
+3
View File
@@ -38,12 +38,15 @@ const SelectList = (props) => {
const Checkbox = (props) => {
return (
<div>
<span>{`${props.name}:`}</span>
<input
type="checkbox"
value={props.parameter}
defaultChecked={props.parameter}
onChange={(e) => props.onChange(e.target.checked)}
/>
</div>
);
};