-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
33 lines (31 loc) · 705 Bytes
/
Copy pathApp.js
File metadata and controls
33 lines (31 loc) · 705 Bytes
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
import React, { Component } from 'react';
import { StatusBar, View } from 'react-native';
import { StackNavigator } from "react-navigation";
import { AlertProvider } from './components/Alert';
import Home from "./screens/Home";
const MainNavigator = StackNavigator(
{
Home: { screen: Home }
},
{
initialRouteName: "Home",
headerMode: "none"
}
);
class App extends Component {
render() {
return (
<AlertProvider>
<MainNavigator>
<View style={{ flex: 1 }}>
<StatusBar
backgroundColor="#fff"
barStyle="dark-content"
/>
</View>
</MainNavigator>
</AlertProvider>
);
}
}
export default App;