Add option for the word "balls"

This commit is contained in:
Ray 2023-12-28 14:35:19 +00:00 committed by GitHub
parent 8720347a8b
commit f476654687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -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:

View File

@ -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>