import React from 'react' import {Shell} from '../platform/shell' import {View, Text} from 'react-native' import type {RootTabsScreenProps} from '../routes/types' export const Profile = ({route}: RootTabsScreenProps<'Profile'>) => { return ( {route.params?.name}'s profile ) }