| 56 | } |
| 57 | |
| 58 | class ContactsScreen extends React.Component { |
| 59 | static navigationOptions = { |
| 60 | tabBarLabel: 'Contacts', |
| 61 | tabBarIcon: tabBarIcon('contacts'), |
| 62 | tabBarButtonComponent: TouchableBounce, |
| 63 | }; |
| 64 | |
| 65 | render() { |
| 66 | return <Contacts />; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | export default createBottomTabNavigator( |
| 71 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…