13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
import { View, Text } from "react-native";
|
|
import React from "react";
|
|
|
|
const Profile = () => {
|
|
return (
|
|
<View>
|
|
<Text>profile</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default Profile;
|