aboutsummaryrefslogtreecommitdiff
path: root/src/routes/tabs/NavigationBar.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2020-10-07 20:17:13 -0400
committerGitHub <noreply@github.com>2020-10-07 20:17:13 -0400
commit0f332655d2b64700623f25912d2610517fb954b6 (patch)
treebf0f4b6fb1f5f226dea4a6ee9d312d28a258bda4 /src/routes/tabs/NavigationBar.tsx
parente86478f52e191c52fea20980278174af46f50953 (diff)
[TMA-186] Instagram Taggs - Frontend (#45)
* Renamed Moments(Bar) to Taggs(Bar) * created initial navigation and empty social media taggs screen * made more progress for the header styling * Finished social media taggs screen, organized code structure * linted stuff D: * moved bar height utility function to utils * moved color constants to constants * moved avatar title * updated comments for social media taggs * NOW the file is there
Diffstat (limited to 'src/routes/tabs/NavigationBar.tsx')
-rw-r--r--src/routes/tabs/NavigationBar.tsx13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/routes/tabs/NavigationBar.tsx b/src/routes/tabs/NavigationBar.tsx
index d36b02ae..456e923f 100644
--- a/src/routes/tabs/NavigationBar.tsx
+++ b/src/routes/tabs/NavigationBar.tsx
@@ -1,13 +1,8 @@
-import React from 'react';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
+import React from 'react';
import {NavigationIcon} from '../../components';
-import {
- ProfileScreen,
- SearchScreen,
- Home,
- Notifications,
- Upload,
-} from '../../screens';
+import {Home, Notifications, SearchScreen, Upload} from '../../screens';
+import Profile from '../profile';
const Tabs = createBottomTabNavigator();
@@ -65,7 +60,7 @@ const NavigationBar: React.FC = () => {
<Tabs.Screen name="Search" component={SearchScreen} />
<Tabs.Screen name="Upload" component={Upload} />
<Tabs.Screen name="Notifications" component={Notifications} />
- <Tabs.Screen name="Profile" component={ProfileScreen} />
+ <Tabs.Screen name="Profile" component={Profile} />
</Tabs.Navigator>
);
};