Skip to content

Instantly share code, notes, and snippets.

@itsramiel
Created June 4, 2022 06:48
Show Gist options
  • Save itsramiel/6e94fb9c7775d609ca6191f83de135e3 to your computer and use it in GitHub Desktop.
Save itsramiel/6e94fb9c7775d609ca6191f83de135e3 to your computer and use it in GitHub Desktop.
Home.tsx starting point
import { StyleSheet, Text, View } from "react-native";
import React from "react";
const Home = () => {
return (
<View>
<Text>Home</Text>
</View>
);
};
export default Home;
const styles = StyleSheet.create({});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment