| 20 | ); |
| 21 | |
| 22 | class AlbumsScreen extends React.Component { |
| 23 | static navigationOptions = { |
| 24 | tabBarLabel: 'Albums', |
| 25 | tabBarIcon: tabBarIcon('photo-album'), |
| 26 | tabBarButtonComponent: TouchableBounce, |
| 27 | }; |
| 28 | |
| 29 | render() { |
| 30 | return <Albums />; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | class ArticleScreen extends React.Component { |
| 35 | static navigationOptions = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…