| 44 | } |
| 45 | |
| 46 | class ChatScreen extends React.Component { |
| 47 | static navigationOptions = { |
| 48 | tabBarLabel: 'Chat', |
| 49 | tabBarIcon: tabBarIcon('chat-bubble'), |
| 50 | tabBarButtonComponent: TouchableBounce, |
| 51 | }; |
| 52 | |
| 53 | render() { |
| 54 | return <Chat />; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | class ContactsScreen extends React.Component { |
| 59 | static navigationOptions = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…