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
- sus
- fr fr
- balls
CURRENT ISSUES:

View File

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