index.tsx 208 B

123456789101112
  1. import React from 'react';
  2. import { View, Text } from 'react-native';
  3. const ProfileScreen = () => {
  4. return (
  5. <View>
  6. <Text>Profile Screen</Text>
  7. </View>
  8. );
  9. };
  10. export default ProfileScreen;