Skip to content

Instantly share code, notes, and snippets.

@WallysonGalvao
Last active June 21, 2020 18:08
Show Gist options
  • Save WallysonGalvao/83e259bbc3946e38bdf8f40ed9f029eb to your computer and use it in GitHub Desktop.
Save WallysonGalvao/83e259bbc3946e38bdf8f40ed9f029eb to your computer and use it in GitHub Desktop.
Marvelapp
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