diff options
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r-- | src/routes/profile/ProfileStack.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/routes/profile/ProfileStack.tsx b/src/routes/profile/ProfileStack.tsx index df4d234f..1d7b907e 100644 --- a/src/routes/profile/ProfileStack.tsx +++ b/src/routes/profile/ProfileStack.tsx @@ -1,4 +1,5 @@ import {createStackNavigator} from '@react-navigation/stack'; +import {MomentType} from '../../types'; export type ProfileStackParams = { Search: undefined; @@ -14,6 +15,10 @@ export type ProfileStackParams = { title: string; image: object; }; + IndividualMoment: { + moment: MomentType; + isProfileView: boolean; + }; }; export const ProfileStack = createStackNavigator<ProfileStackParams>(); |