// @flow
import React from 'react'
import FastImage from 'react-native-fast-image'
import Icon from 'react-native-vector-icons/Ionicons'
import ImageGrid from './ImageGrid'
const FastImageGrid = () =>
FastImageGrid.navigationOptions = {
tabBarLabel: 'FastImage Grid',
tabBarIcon: ({ focused, tintColor }) => {
if (focused) return
return
},
}
export default FastImageGrid