Created
June 4, 2019 23:22
-
-
Save Wellers0n/08e88b54454dc25fd1fe1c33004c09ba to your computer and use it in GitHub Desktop.
functionExport.js
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'; | |
export function navigationOptions({ navigation }) { | |
return { | |
header: null | |
}; | |
} | |
const FunctionScreen = () => { | |
return ( | |
<View style={styles.container}> | |
<Text>Function component!</Text> | |
</View> | |
); | |
}; | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
backgroundColor: "#fff", | |
alignItems: "center", | |
justifyContent: "center" | |
} | |
}); | |
export default FunctionScreen; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment