Created
June 4, 2022 06:50
-
-
Save itsramiel/3b708b4dab4cc158db7a2150b37edb2a to your computer and use it in GitHub Desktop.
Profile 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 Profile = () => { | |
return ( | |
<View> | |
<Text>Profile</Text> | |
</View> | |
); | |
}; | |
export default Profile; | |
const styles = StyleSheet.create({}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment