Created
June 4, 2022 06:48
-
-
Save itsramiel/6e94fb9c7775d609ca6191f83de135e3 to your computer and use it in GitHub Desktop.
Home.tsx starting point
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 { 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