-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
32 lines (27 loc) · 898 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
import React, { Component } from "react";
import { Provider } from 'react-redux'
import { createAppContainer, createStackNavigator } from 'react-navigation';
import { PersistGate } from 'redux-persist/integration/react'
import { store, persistor } from './store'
import RecipeListScreen from './app/containers/RecipeListScreen';
import RecipeDetailScreen from './app/containers/RecipeDetailScreen';
// supress Yellowbox warnings in DEBUG
console.disableYellowBox = true;
export default class App extends Component {
render() {
return (
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<AppContainer />
</PersistGate>
</Provider>
);
}
}
const Routes = createStackNavigator(
{
RecipeListScreen: RecipeListScreen,
RecipeDetailScreen: RecipeDetailScreen,
}
);
const AppContainer = createAppContainer(Routes);