Last active
February 23, 2019 17:58
-
-
Save advorkina/f8732059c248b7a0d18ff5935d281f4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Provider } from 'mobx-react/native'; | |
import observableStore from './src/mobx/observableStore'; | |
/// your navigation setup here | |
export default class App extends Component { | |
render() { | |
return ( | |
<Provider observableStore={observableStore}> | |
<AppContainer/> | |
</Provider> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment