aboutsummaryrefslogtreecommitdiff
path: root/src/routes/profile/ProfileStack.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r--src/routes/profile/ProfileStack.tsx5
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>();