Skip to content

Instantly share code, notes, and snippets.

@linux08
Created September 7, 2018 23:40
Show Gist options
  • Save linux08/c01402feb1125898e39f8663e4afdc51 to your computer and use it in GitHub Desktop.
Save linux08/c01402feb1125898e39f8663e4afdc51 to your computer and use it in GitHub Desktop.
import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import { AppNavigator} from './navigator';
import MyProvider from './Provider';
export default () => (
<MyProvider>
<View style={styles.container}>
<AppNavigator />
</View>
</MyProvider>
)
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment