Skip to content

Commit 396126a

Browse files
committed
updated CosyncJWT React
1 parent 37e75df commit 396126a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)