17 lines
416 B
JavaScript
Raw Normal View History

2017-04-13 00:13:44 -04:00
// @flow
import React from 'react'
import { Image } from 'react-native'
2018-03-17 20:21:58 -04:00
import Icon from './Icons/Icon'
2017-04-13 00:13:44 -04:00
import ImageGrid from './ImageGrid'
2017-04-18 01:52:09 -04:00
const DefaultImageGrid = () => <ImageGrid ImageComponent={Image} />
2017-04-13 00:13:44 -04:00
DefaultImageGrid.navigationOptions = {
2017-04-18 01:52:09 -04:00
tabBarLabel: 'Image Grid',
2018-03-17 20:21:58 -04:00
tabBarIcon: props => (
<Icon name="ios-image-outline" focusedName="ios-image" {...props} />
),
2017-04-13 00:13:44 -04:00
}
export default DefaultImageGrid