aboutsummaryrefslogtreecommitdiff
path: root/src/screens/profile/ProfileScreen.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-20 16:07:36 -0400
committerIvan Chen <ivan@tagg.id>2021-07-20 16:07:36 -0400
commit7d57106ae614e42ea1d7d871a098e0acefc83762 (patch)
tree96babff532d7afe3eb71b743d03a5313c6903cac /src/screens/profile/ProfileScreen.tsx
parent9766c3b0b4764052d708dba2a20d9673230de9c7 (diff)
Add progress bar library, Add placeholder component
Diffstat (limited to 'src/screens/profile/ProfileScreen.tsx')
-rw-r--r--src/screens/profile/ProfileScreen.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/profile/ProfileScreen.tsx b/src/screens/profile/ProfileScreen.tsx
index 3dd142e1..f8e50af1 100644
--- a/src/screens/profile/ProfileScreen.tsx
+++ b/src/screens/profile/ProfileScreen.tsx
@@ -1,7 +1,7 @@
+import {RouteProp} from '@react-navigation/native';
import React, {useEffect} from 'react';
import {StatusBar} from 'react-native';
-import {Content, TabsGradient} from '../../components';
-import {RouteProp} from '@react-navigation/native';
+import {Content, MomentUploadProgressBar, TabsGradient} from '../../components';
import {MainStackParams} from '../../routes/';
import {visitedUserProfile} from '../../services';
@@ -24,6 +24,7 @@ const ProfileScreen: React.FC<ProfileOnboardingProps> = ({route}) => {
return (
<>
<StatusBar barStyle="dark-content" />
+ <MomentUploadProgressBar />
<Content {...{userXId, screenType}} />
<TabsGradient />
</>