Place DisplayEntries at bottom of page

This commit is contained in:
Ray 2024-01-02 07:47:30 +00:00 committed by GitHub
parent df8c672296
commit 67dc8aeb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,6 @@ export function MyForm(props) {
// Create form for user to input data // Create form for user to input data
return ( return (
<div style={{ backgroundColor: '#84BC9C' }}> <div style={{ backgroundColor: '#84BC9C' }}>
<DisplayEntries />
<Form onSubmit={submitHandler}> <Form onSubmit={submitHandler}>
<Form.Group> <Form.Group>
<Form.Label style={{ fontSize: '40px' }}>Ray's Unbased Takes</Form.Label> <Form.Label style={{ fontSize: '40px' }}>Ray's Unbased Takes</Form.Label>
@ -137,6 +136,7 @@ export function MyForm(props) {
</Col> </Col>
</Form.Group> </Form.Group>
</Form> </Form>
<DisplayEntries />
</div> </div>
); );
} }