Tidy up of results ( still in progress ) and push of changes to Google Firebase Hosting
This commit is contained in:
parent
43f6954f53
commit
ed7d1550fd
|
@ -1,14 +1,14 @@
|
||||||
asset-manifest.json,1703840687808,a13c276e584615574274feb9dc635757aad3884dca9eae26a61982af5505e751
|
asset-manifest.json,1703842933708,f386b62e3f321d2fb314f464857211073c2167b682193f12ce600e1d0b992aac
|
||||||
favicon.ico,1703840667388,a23c21f0703c05d16598902d8aab80a7426c3dea9ebfa16aa644d8c0885e09e6
|
index.html,1703842933704,4f20c33e0f8ccc638395a610d3fc68eb37132b5e303532324437164b5c4bc310
|
||||||
index.html,1703840687808,56f0f255e1a36c31103801ac34de279a74b3e3bb4580b60e6d3de71f942a8de9
|
favicon.ico,1703842920224,a23c21f0703c05d16598902d8aab80a7426c3dea9ebfa16aa644d8c0885e09e6
|
||||||
logo192.png,1703840667388,40cc17b9dffc3a3cf0b1386acd4d3c15b8b1caf257f6a58854268264f7568504
|
logo192.png,1703842920224,40cc17b9dffc3a3cf0b1386acd4d3c15b8b1caf257f6a58854268264f7568504
|
||||||
manifest.json,1703840667388,c12dd51ed2c8ac94acf3c25d1f0c541d667c90c8557ac43cb42d0a6df086bd7f
|
manifest.json,1703842920224,c12dd51ed2c8ac94acf3c25d1f0c541d667c90c8557ac43cb42d0a6df086bd7f
|
||||||
robots.txt,1703840667388,93c0b9bd95d88537a1eb1706bcef9954bdb305674f33c5aeb7549eba0d5af7c9
|
robots.txt,1703842920228,93c0b9bd95d88537a1eb1706bcef9954bdb305674f33c5aeb7549eba0d5af7c9
|
||||||
static/js/787.219110d8.chunk.js,1703840687828,d06a4f870907c32b5847643530dcc88256e4b728bfacd3e04ef9f47e19112684
|
static/js/787.219110d8.chunk.js,1703842933728,d06a4f870907c32b5847643530dcc88256e4b728bfacd3e04ef9f47e19112684
|
||||||
static/js/787.219110d8.chunk.js.map,1703840687832,d5ee4ad43c81fa0dbac17f7d67557de49cdd9277f2245d39d2d88b141c9dc071
|
static/js/787.219110d8.chunk.js.map,1703842933732,d5ee4ad43c81fa0dbac17f7d67557de49cdd9277f2245d39d2d88b141c9dc071
|
||||||
static/js/main.1544a04b.js.LICENSE.txt,1703840687824,64f315b68253621057cfb73e72a5e63921d483c76ab0b67042ffe0c1294b2cd1
|
static/js/main.d2111299.js.LICENSE.txt,1703842933724,9f937641e8a9ee34d51d46887691109da83a20ed71b908c7d617f1cb77d6f85d
|
||||||
logo512.png,1703840667388,08092a802e7bec5309059df1c2624c6e9d5bdf5d4468293812064f447a1a7ce1
|
logo512.png,1703842920224,08092a802e7bec5309059df1c2624c6e9d5bdf5d4468293812064f447a1a7ce1
|
||||||
static/css/main.62d3213f.css,1703840687824,af23472e44deb35bdfeb0b7390ce8efd2acc86442b9d839559906304abfd475b
|
static/css/main.62d3213f.css,1703842933728,af23472e44deb35bdfeb0b7390ce8efd2acc86442b9d839559906304abfd475b
|
||||||
static/js/main.1544a04b.js,1703840687824,58a99fc204aafb4e68a74c365fb3e9bd56a2da7995daa201e14f85966eef6cc0
|
static/css/main.62d3213f.css.map,1703842933728,6e4c33d98b511b92556a7c828f4711cc1456bbcd65f87796e58b2b47a51a30d2
|
||||||
static/css/main.62d3213f.css.map,1703840687828,6e4c33d98b511b92556a7c828f4711cc1456bbcd65f87796e58b2b47a51a30d2
|
static/js/main.d2111299.js,1703842933728,ca280a3a3a63dec7877caa74abc7df777c06eff287f996839eba6b45fea75a32
|
||||||
static/js/main.1544a04b.js.map,1703840687828,e22fd6b78cc70b4a41e2ba0620131799bec087d259836c20c1a26cc45bdf9758
|
static/js/main.d2111299.js.map,1703842933732,654a63715f30bd4d8c0f2275e40fe2aa06357d3a57c856d9d43393991799ce97
|
||||||
|
|
16
src/App.js
16
src/App.js
|
@ -172,14 +172,14 @@ const db = getFirestore(getApp());
|
||||||
<h2>Existing incidents in the database:</h2>
|
<h2>Existing incidents in the database:</h2>
|
||||||
{incidents.map((incident) => (
|
{incidents.map((incident) => (
|
||||||
<div key={incident.id}>
|
<div key={incident.id}>
|
||||||
<h3 bold>What date did this shennanigans occur?:
|
<h3>What date did this shennanigans occur?:</h3>
|
||||||
{incident.date}</h3>
|
<p>{incident.date}</p>
|
||||||
<h2>Who submitted this:
|
<h3>Who submitted this:</h3>
|
||||||
{incident.submitter}</h2>
|
<p>{incident.submitter}</p>
|
||||||
<h2>What caused Ray's moment?:
|
<h3>What caused Ray's moment?:</h3>
|
||||||
{incident.context}</h2>
|
<p>{incident.context}</p>
|
||||||
<h2>What word's did Ray use this time?:
|
<h2>What word's did Ray use this time?:</h2>
|
||||||
{incident.selectedOptions}</h2>
|
<p>{incident.selectedOptions}</p>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
|
Loading…
Reference in New Issue