Skip to content

Instantly share code, notes, and snippets.

@mileung
Created March 14, 2017 07:32
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 mileung/c1991616229c7120458130461c1dcb19 to your computer and use it in GitHub Desktop.
Save mileung/c1991616229c7120458130461c1dcb19 to your computer and use it in GitHub Desktop.
Template for React components
import React from 'react';
import {
View,
} from 'react-native';
export default class Template extends React.Component {
render() {
return (
<View>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment