diff options
Diffstat (limited to 'src/components/profile/ProfileHeader.tsx')
-rw-r--r-- | src/components/profile/ProfileHeader.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/profile/ProfileHeader.tsx b/src/components/profile/ProfileHeader.tsx index f3ef5dfa..0b56a787 100644 --- a/src/components/profile/ProfileHeader.tsx +++ b/src/components/profile/ProfileHeader.tsx @@ -5,15 +5,19 @@ import FollowCount from './FollowCount'; import {View, Text, StyleSheet} from 'react-native'; import {SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; import {AuthContext, ProfileContext} from '../../routes/'; -import { ProfilePreviewType } from 'src/types'; +import {ProfilePreviewType} from 'src/types'; type ProfileHeaderProps = { - isProfileView: boolean, - numFollowing: number, + isProfileView: boolean; + numFollowing: number; numFollowers: number; }; -const ProfileHeader: React.FC<ProfileHeaderProps> = ({isProfileView, numFollowing, numFollowers}) => { +const ProfileHeader: React.FC<ProfileHeaderProps> = ({ + isProfileView, + numFollowing, + numFollowers, +}) => { const { profile: {name}, } = isProfileView |