-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
36 lines (32 loc) · 845 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React from "react"
import { ActivityIndicator, View, StyleSheet } from "react-native"
import { NavigationContainer } from "@react-navigation/native"
import Tabs from "./src/components/Tabs"
import { useGetWeather } from "./src/hooks/useGetWeather"
import ErrorItem from "./src/components/ErrorItem"
const App = () => {
const [loading, error, weather] = useGetWeather();
if (weather && weather.list && !loading) {
return (
<NavigationContainer>
<Tabs weather={weather} />
</NavigationContainer>
)
}
return (
<View style={styles.container}>
{error ? (
<ErrorItem />
) : (
<ActivityIndicator size={'large'} color={'blue'} />
)}
</View>
)
}
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
flex: 1
}
})
export default App