Created
February 26, 2017 22:55
-
-
Save hgale/91465c84dd68e06acc215bd36e02f5c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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