Skip to content

Instantly share code, notes, and snippets.

@hgale
Created February 26, 2017 22:55
Show Gist options
  • Save hgale/91465c84dd68e06acc215bd36e02f5c6 to your computer and use it in GitHub Desktop.
Save hgale/91465c84dd68e06acc215bd36e02f5c6 to your computer and use it in GitHub Desktop.
import React from 'react'
import { View, Image } from 'react-native'
import style from './Style'
const ImageRow = (props) => (
<View style={style.cellContainer}>
<Image style={style.imageContainer} source={{uri:props.uri}}/>
</View>
)
export default ImageRow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment