Add extra word options to allow joke to be more universal
This commit is contained in:
parent
30ebf7ca56
commit
39d696abf6
18
src/App.js
18
src/App.js
|
@ -80,7 +80,7 @@ export function MyForm(props) {
|
||||||
value={date}
|
value={date}
|
||||||
onChange={(e) => setDate(e.target.value)}
|
onChange={(e) => setDate(e.target.value)}
|
||||||
/>
|
/>
|
||||||
<Form.Label style={{ fontSize: '30px' }}>Enter context for this tamper tantrum:</Form.Label>
|
<Form.Label style={{ fontSize: '30px' }}>Enter context for this ray moment:</Form.Label>
|
||||||
<Form.Control
|
<Form.Control
|
||||||
type="text"
|
type="text"
|
||||||
name="context"
|
name="context"
|
||||||
|
@ -121,6 +121,22 @@ export function MyForm(props) {
|
||||||
onChange={handleCheckboxChange}
|
onChange={handleCheckboxChange}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
label="sus"
|
||||||
|
value="sus"
|
||||||
|
checked={selectedOptions.includes('sus')}
|
||||||
|
onChange={handleCheckboxChange}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Form.Check
|
||||||
|
type="checkbox"
|
||||||
|
label="fr fr"
|
||||||
|
value="fr fr"
|
||||||
|
checked={selectedOptions.includes('fr fr')}
|
||||||
|
onChange={handleCheckboxChange}
|
||||||
|
/>
|
||||||
|
|
||||||
<Button type="submit">Submit</Button>
|
<Button type="submit">Submit</Button>
|
||||||
</Col>
|
</Col>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
|
Loading…
Reference in New Issue