Move coding comment as web server was rendering it as text

This commit is contained in:
Ray 2023-12-28 14:40:48 +00:00 committed by GitHub
parent d8aa44144f
commit f719efba54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 15 deletions

View File

@ -1,14 +1,14 @@
asset-manifest.json,1703773533210,c4005d25d1f15ef6d27b1c54a55c815c32453867887506c7ec004555b8b6049e asset-manifest.json,1703774287450,d5d6f0406a1eef333cd8489a83eb89af607018e8ba166594f30e0b4f601b9ec8
favicon.ico,1703773514902,a23c21f0703c05d16598902d8aab80a7426c3dea9ebfa16aa644d8c0885e09e6 index.html,1703774287446,96e850790f0b821ce2abf6053269ec25f7237c8a9e5121981ce46e18d1563a37
index.html,1703773533210,da6914fda8a5a0b59860622318b4305d3e327443d2e856488f4f35ee546787fc manifest.json,1703774274174,c12dd51ed2c8ac94acf3c25d1f0c541d667c90c8557ac43cb42d0a6df086bd7f
logo192.png,1703773514902,40cc17b9dffc3a3cf0b1386acd4d3c15b8b1caf257f6a58854268264f7568504 robots.txt,1703774274174,93c0b9bd95d88537a1eb1706bcef9954bdb305674f33c5aeb7549eba0d5af7c9
robots.txt,1703773514906,93c0b9bd95d88537a1eb1706bcef9954bdb305674f33c5aeb7549eba0d5af7c9 favicon.ico,1703774274174,a23c21f0703c05d16598902d8aab80a7426c3dea9ebfa16aa644d8c0885e09e6
manifest.json,1703773514906,c12dd51ed2c8ac94acf3c25d1f0c541d667c90c8557ac43cb42d0a6df086bd7f logo192.png,1703774274174,40cc17b9dffc3a3cf0b1386acd4d3c15b8b1caf257f6a58854268264f7568504
static/js/787.219110d8.chunk.js,1703773533242,d06a4f870907c32b5847643530dcc88256e4b728bfacd3e04ef9f47e19112684 static/js/787.219110d8.chunk.js,1703774287470,d06a4f870907c32b5847643530dcc88256e4b728bfacd3e04ef9f47e19112684
static/js/main.60a9aa29.js.LICENSE.txt,1703773533242,64f315b68253621057cfb73e72a5e63921d483c76ab0b67042ffe0c1294b2cd1 static/js/787.219110d8.chunk.js.map,1703774287470,d5ee4ad43c81fa0dbac17f7d67557de49cdd9277f2245d39d2d88b141c9dc071
logo512.png,1703773514902,08092a802e7bec5309059df1c2624c6e9d5bdf5d4468293812064f447a1a7ce1 static/js/main.3b56f041.js.LICENSE.txt,1703774287470,64f315b68253621057cfb73e72a5e63921d483c76ab0b67042ffe0c1294b2cd1
static/js/787.219110d8.chunk.js.map,1703773533270,d5ee4ad43c81fa0dbac17f7d67557de49cdd9277f2245d39d2d88b141c9dc071 logo512.png,1703774274174,08092a802e7bec5309059df1c2624c6e9d5bdf5d4468293812064f447a1a7ce1
static/css/main.62d3213f.css,1703773533242,af23472e44deb35bdfeb0b7390ce8efd2acc86442b9d839559906304abfd475b static/css/main.62d3213f.css,1703774287470,af23472e44deb35bdfeb0b7390ce8efd2acc86442b9d839559906304abfd475b
static/js/main.60a9aa29.js,1703773533242,b33b6c7bf3d4b3fafed548d67a093e3ac863a6c722c8b2736bf5618f43e15a86 static/js/main.3b56f041.js,1703774287470,f2db36f5ec8b1ac49048172e0481aa46685eff8e264986e92b16b7dc160264df
static/css/main.62d3213f.css.map,1703773533242,6e4c33d98b511b92556a7c828f4711cc1456bbcd65f87796e58b2b47a51a30d2 static/css/main.62d3213f.css.map,1703774287470,6e4c33d98b511b92556a7c828f4711cc1456bbcd65f87796e58b2b47a51a30d2
static/js/main.60a9aa29.js.map,1703773533270,5476ce16e4b8371c55efa0b8e8d53f3d460e75adaca7ea9cfa1aba1c6811b502 static/js/main.3b56f041.js.map,1703774287470,596a58f9eab5a4ed497312ae6700fd35142e99d242cdfb551e808cca316c431d

View File

@ -152,7 +152,7 @@ export function MyForm(props) {
</Form.Group> </Form.Group>
// Create a form group to display the existing entries in the database.
<Form.Group> <Form.Group>
<Form.Label style={{ fontSize: '30px' }}>Existing entries</Form.Label> <Form.Label style={{ fontSize: '30px' }}>Existing entries</Form.Label>
<p>Check here for existing entries:</p> <p>Check here for existing entries:</p>
@ -169,6 +169,7 @@ export function MyForm(props) {
</Form.Group> </Form.Group>
</Form> </Form>
</div> </div>
// Create a form group to display the existing entries in the database.
); );
} }
export default MyForm; export default MyForm;