aboutsummaryrefslogtreecommitdiffstats
path: root/App.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'App.jsx')
-rw-r--r--App.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/App.jsx b/App.jsx
index 2d40b0e..4dfd6f6 100644
--- a/App.jsx
+++ b/App.jsx
@@ -4,6 +4,7 @@ import { useState, useEffect } from 'react'
import AsyncStorage from '@react-native-async-storage/async-storage'
import Main from './components/Main'
import Login from './components/Login'
+import Loader from './components/Loader'
export default function App() {
const [session, setSession] = useState()
@@ -24,7 +25,7 @@ export default function App() {
<SafeAreaView style={styles.container}>
{error
? <Text style={styles.error}>{error}</Text>
- : <Text>Loading...</Text>}
+ : <Loader />}
</SafeAreaView>
)