David Pomerenke
commited on
Commit
·
91e29ba
1
Parent(s):
33469f2
Loading spinner
Browse files- frontend/src/App.js +1 -1
frontend/src/App.js
CHANGED
@@ -83,7 +83,7 @@ function App () {
|
|
83 |
paddingBottom: '5vh'
|
84 |
}}
|
85 |
>
|
86 |
-
{loading && <
|
87 |
{error && <p>Error: {error}</p>}
|
88 |
{data && (
|
89 |
<>
|
|
|
83 |
paddingBottom: '5vh'
|
84 |
}}
|
85 |
>
|
86 |
+
{loading && <i className='pi pi-spinner pi-spin' style={{ fontSize: '4rem' }} />}
|
87 |
{error && <p>Error: {error}</p>}
|
88 |
{data && (
|
89 |
<>
|