import { FC } from 'react'; import { BackHeader, Container, SafeScreen, Text } from 'components'; import { RootStackScreenProps } from 'navigation'; import { NavigationRoutes } from 'navigation/enum'; import { Inner } from 'components/profile'; export const Profile: FC = ({ userId }) => { return ( My Profile } /> ); }; type ProfileType = RootStackScreenProps & ProfileProps; interface ProfileProps { userId: string; }