Skip to content

Instantly share code, notes, and snippets.

@Lkubok
Created June 17, 2020 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lkubok/ff2410713b81f7a87e2730f00effd7a6 to your computer and use it in GitHub Desktop.
Save Lkubok/ff2410713b81f7a87e2730f00effd7a6 to your computer and use it in GitHub Desktop.
import { createAppContainer } from 'react-navigation';
import { Provider as StoreProvider } from 'react-redux';
import React from 'react';
import store from 'store';
import Navigation from 'navigation';
import { BrandingProvider } from 'contexts';
const AppContainer = createAppContainer(Navigation);
const App = () => (
<StoreProvider store={store}>
<BrandingProvider>
<AppContainer/>
</BrandingProvider>
</StoreProvider>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment