Add option for the word "balls"
This commit is contained in:
parent
8720347a8b
commit
f476654687
|
@ -11,6 +11,7 @@ Simple check boxes for the various words i commonly use as joking insults such a
|
||||||
- fart
|
- fart
|
||||||
- sus
|
- sus
|
||||||
- fr fr
|
- fr fr
|
||||||
|
- balls
|
||||||
|
|
||||||
|
|
||||||
CURRENT ISSUES:
|
CURRENT ISSUES:
|
||||||
|
|
|
@ -138,6 +138,15 @@ export function MyForm(props) {
|
||||||
onChange={handleCheckboxChange}
|
onChange={handleCheckboxChange}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
label="balls"
|
||||||
|
value="balls"
|
||||||
|
checked={selectedOptions.includes('balls')}
|
||||||
|
onChange={handleCheckboxChange}
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
<Button type="submit">Submit</Button>
|
<Button type="submit">Submit</Button>
|
||||||
</Col>
|
</Col>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
|
Loading…
Reference in New Issue