Skip to content

Instantly share code, notes, and snippets.

@itsramiel
Created June 4, 2022 06:50
Show Gist options
  • Save itsramiel/3b708b4dab4cc158db7a2150b37edb2a to your computer and use it in GitHub Desktop.
Save itsramiel/3b708b4dab4cc158db7a2150b37edb2a to your computer and use it in GitHub Desktop.
Profile starting point
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