add option for "bruh" and formatted document

This commit is contained in:
Ray 2023-12-29 10:40:01 +00:00 committed by GitHub
parent c9a0822f3b
commit d7e51ff304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 26 deletions

View File

@ -32,6 +32,7 @@
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}

View File

@ -157,7 +157,12 @@ const db = getFirestore(getApp());
checked={selectedOptions.includes('balls')}
onChange={handleCheckboxChange}
/>
<Form.Check
type="checkbox"
label="bruh"
value="bruh"
checked={selectedOptions.includes('bruh')}
onChange={handleCheckboxChange} />
<Button type="submit">Submit</Button>
</Col>