Created
March 14, 2017 07:32
-
-
Save mileung/c1991616229c7120458130461c1dcb19 to your computer and use it in GitHub Desktop.
Template for React components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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