diff --git a/src/App.tsx b/src/App.tsx
index ef1bb18..8f87468 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,6 +3,7 @@ import Web3 from 'web3'
import { BrowserRouter as Router } from 'react-router-dom'
import Header from './components/Header'
import Footer from './components/Footer'
+import Spinner from './components/atoms/Spinner'
import { User } from './context/User'
import { provideOcean } from './ocean'
import Routes from './Routes'
@@ -124,11 +125,13 @@ class App extends Component<{}, AppState> {
<>
- {!this.state.isLoading ? (
-
+
+ {this.state.isLoading ? (
+
+ ) : (
-
- ) : null}
+ )}
+
>