We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e75df commit 396126aCopy full SHA for 396126a
CosyncJWT/CosyncJWTReactNative/screens/HomeScreen.js
@@ -0,0 +1,16 @@
1
+import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
2
+import PasswordScreen from './PasswordScreen';
3
+import ProfileScreen from './ProfileScreen';
4
+
5
+const Tab = createBottomTabNavigator();
6
7
+const HomeScreen = props => {
8
+ return (
9
+ <Tab.Navigator>
10
+ <Tab.Screen name="Profile" component={ProfileScreen} />
11
+ <Tab.Screen name="Settings" component={PasswordScreen} />
12
+ </Tab.Navigator>
13
+ );
14
+}
15
16
+export default HomeScreen;
0 commit comments