Skip to content

Instantly share code, notes, and snippets.

@arunkmoury
Last active May 1, 2018 12:36
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 arunkmoury/7759f76f9451fa123ddf9245c335cb46 to your computer and use it in GitHub Desktop.
Save arunkmoury/7759f76f9451fa123ddf9245c335cb46 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
View
} from 'react-native';
import { DrawerNav } from './src/navigation/DrawerNav';
export default class App extends Component {
render() {
return (
<DrawerNav />
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment