Skip to content

Instantly share code, notes, and snippets.

@shafiqshams
Created April 17, 2017 10:10
Show Gist options
  • Save shafiqshams/956776f4df87c543f47591b659884d25 to your computer and use it in GitHub Desktop.
Save shafiqshams/956776f4df87c543f47591b659884d25 to your computer and use it in GitHub Desktop.
BoilerPlate for App.JS (ReactNative)
import React, { Component } from 'react';
import { Text, View } from 'react-native';
class App extends Component {
render() {
return (
<View>
<Text>An App!</Text>
</View>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment