Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created April 18, 2021 19:15
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 AllGistsEqual/a87f8d3cf1e76c6247a278716ce44bce to your computer and use it in GitHub Desktop.
Save AllGistsEqual/a87f8d3cf1e76c6247a278716ce44bce to your computer and use it in GitHub Desktop.
// File: App.tsx
import { StatusBar } from 'expo-status-bar'
import React from 'react'
import { Provider } from 'react-redux'
import store from './src/redux'
import MainNavigation from './src/routing/MainNavigation'
export default function App(): React.ReactElement {
return (
<Provider store={store}>
<StatusBar hidden />
<MainNavigation />
</Provider>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment