diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-10-22 15:34:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 18:34:21 -0400 |
commit | d0237cbb61e5c4d77c7b0cefc50891639646ee91 (patch) | |
tree | 5b0c1e33c1043887ad45c06a30173dc469d28228 /src/routes/profile/ProfileStack.tsx | |
parent | 5db451725d6165de16ee11cda608a05e96e481f9 (diff) |
[TMA 236] Comments PR (#64)
* Added comments count and retrieve comments
* Working draft
* The one before cleanup
* Finally
* Added time icon and major refactoring
* Small fix for social media taggs
* Addressed review comments
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r-- | src/routes/profile/ProfileStack.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/routes/profile/ProfileStack.tsx b/src/routes/profile/ProfileStack.tsx index 1d7b907e..6d875e81 100644 --- a/src/routes/profile/ProfileStack.tsx +++ b/src/routes/profile/ProfileStack.tsx @@ -19,6 +19,13 @@ export type ProfileStackParams = { moment: MomentType; isProfileView: boolean; }; + MomentCommentsScreen: { + isProfileView: boolean; + moment_id: string; + }; + ProfileView: { + isProfileView: boolean; + }; }; export const ProfileStack = createStackNavigator<ProfileStackParams>(); |