Skip to content

Instantly share code, notes, and snippets.

@advorkina
Last active February 23, 2019 17:58
Show Gist options
  • Save advorkina/f8732059c248b7a0d18ff5935d281f4b to your computer and use it in GitHub Desktop.
Save advorkina/f8732059c248b7a0d18ff5935d281f4b to your computer and use it in GitHub Desktop.
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