Skip to content

Instantly share code, notes, and snippets.

@gerrymcdonnell
Created October 19, 2019 19:37
Show Gist options
  • Save gerrymcdonnell/d8365f4ab15e1b1a1a5cb567ed916e19 to your computer and use it in GitHub Desktop.
Save gerrymcdonnell/d8365f4ab15e1b1a1a5cb567ed916e19 to your computer and use it in GitHub Desktop.
React native fucntional component template
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