-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
25 lines (23 loc) · 792 Bytes
/
App.js
File metadata and controls
25 lines (23 loc) · 792 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
import React, { Component } from 'react';
import { View } from 'react-native';
import { Provider } from 'react-redux';
import DropdownAlert from 'react-native-dropdownalert';
import configureStore from './src/configureStore';
import Navigator from './src/components/Navigator';
import DropDownHolder from './src/components/DropDownHolder';
const store = configureStore();
export default class App extends Component {
render() {
return (
<View style={{ flex: 1 }}>
<Provider store={store}>
<Navigator />
</Provider>
<DropdownAlert
ref={ref => DropDownHolder.setDropDown(ref)}
closeInterval={4000}
/>
</View>
);
}
}