Last active
June 21, 2020 18:08
-
-
Save WallysonGalvao/83e259bbc3946e38bdf8f40ed9f029eb to your computer and use it in GitHub Desktop.
Marvelapp
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, View, Text } from "react-native"; | |
const Detail = () => { | |
return ( | |
<View style={styles.container}> | |
<Text>Detail</Text> | |
</View> | |
); | |
}; | |
export default Detail; | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
alignItems: "center", | |
justifyContent: "center", | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment