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
|
||||
- sus
|
||||
- fr fr
|
||||
- balls
|
||||
|
||||
|
||||
CURRENT ISSUES:
|
||||
|
|
|
@ -138,6 +138,15 @@ export function MyForm(props) {
|
|||
onChange={handleCheckboxChange}
|
||||
/>
|
||||
|
||||
<Form.Check
|
||||
type="checkbox"
|
||||
label="balls"
|
||||
value="balls"
|
||||
checked={selectedOptions.includes('balls')}
|
||||
onChange={handleCheckboxChange}
|
||||
/>
|
||||
|
||||
|
||||
<Button type="submit">Submit</Button>
|
||||
</Col>
|
||||
</Form.Group>
|
||||
|
|
Loading…
Reference in New Issue