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