mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 20:28:21 +00:00
17 lines
416 B
JavaScript
17 lines
416 B
JavaScript
// @flow
|
|
import React from 'react'
|
|
import { Image } from 'react-native'
|
|
import Icon from './Icons/Icon'
|
|
import ImageGrid from './ImageGrid'
|
|
|
|
const DefaultImageGrid = () => <ImageGrid ImageComponent={Image} />
|
|
|
|
DefaultImageGrid.navigationOptions = {
|
|
tabBarLabel: 'Image Grid',
|
|
tabBarIcon: props => (
|
|
<Icon name="ios-image-outline" focusedName="ios-image" {...props} />
|
|
),
|
|
}
|
|
|
|
export default DefaultImageGrid
|