Skip to content

Instantly share code, notes, and snippets.

@betomoedano
Created December 24, 2021 04:11
Show Gist options
  • Save betomoedano/351250d378883770cb56690996045daf to your computer and use it in GitHub Desktop.
Save betomoedano/351250d378883770cb56690996045daf to your computer and use it in GitHub Desktop.
Code for HomeScreen
import React from "react";
import { View, Text } from "react-native";
const HomeScreen = () => {
return (
<View>
<Text
style={{
fontSize: 30,
textAlign: "center",
marginTop: "20%"
}}
>Home Screen</Text>
</View>
);
}
export default HomeScreen;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment