Created
October 19, 2019 19:37
-
-
Save gerrymcdonnell/d8365f4ab15e1b1a1a5cb567ed916e19 to your computer and use it in GitHub Desktop.
React native fucntional component template
This file contains hidden or 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 { StyleSheet, Text, View } from 'react-native'; | |
const MyComponentName=props=>{ | |
return( | |
//put component stuff here | |
<View> | |
</View> | |
) | |
}; | |
const styles=StyleSheet.create({}); | |
export default MyComponentName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment