| 8 | import tabBarIcon from './Shared/tabBarIcon'; |
| 9 | |
| 10 | class Album extends React.Component { |
| 11 | static navigationOptions: NavigationMaterialBottomTabOptions = { |
| 12 | tabBarIcon: tabBarIcon('photo-album'), |
| 13 | }; |
| 14 | |
| 15 | render() { |
| 16 | return <PhotoGrid id="album" />; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | class Library extends React.Component { |
| 21 | static navigationOptions: NavigationMaterialBottomTabOptions = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…