diff options
Diffstat (limited to 'src/routes/profile/Profile.tsx')
| -rw-r--r-- | src/routes/profile/Profile.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/routes/profile/Profile.tsx b/src/routes/profile/Profile.tsx index 8ab8ecde..e0a34f5b 100644 --- a/src/routes/profile/Profile.tsx +++ b/src/routes/profile/Profile.tsx @@ -6,6 +6,7 @@ import { SearchScreen, ProfileScreen, MomentCommentsScreen, + FollowersListScreen, } from '../../screens'; import {ProfileStack, ProfileStackParams} from './ProfileStack'; import {RouteProp} from '@react-navigation/native'; @@ -102,6 +103,11 @@ const Profile: React.FC<ProfileStackProps> = ({route}) => { options={{headerShown: false}} initialParams={{isProfileView: isProfileView}} /> + <ProfileStack.Screen + name="FollowersListScreen" + component={FollowersListScreen} + initialParams={{isProfileView: isProfileView}} + /> </ProfileStack.Navigator> ); }; |
