mirror of
https://github.com/status-im/react-native.git
synced 2025-01-18 05:23:26 +00:00
224d29447f
Summary: - [x] Explain the **motivation** for making this change. It fixes #14313 Closes https://github.com/facebook/react-native/pull/14495 Differential Revision: D6042094 Pulled By: hramos fbshipit-source-id: d70e42bfee0a22882bad91cb885fb0cfc91c7d38
19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
import { TabNavigator } from 'react-navigation';
|
|
|
|
import ChatListScreen from './chat/ChatListScreen';
|
|
import WelcomeScreen from './welcome/WelcomeScreen';
|
|
|
|
/**
|
|
* Screen with tabs shown on app startup.
|
|
*/
|
|
const HomeScreenTabNavigator = TabNavigator({
|
|
Welcome: {
|
|
screen: WelcomeScreen,
|
|
},
|
|
Chats: {
|
|
screen: ChatListScreen,
|
|
},
|
|
});
|
|
|
|
export default HomeScreenTabNavigator;
|