Skip to content

Instantly share code, notes, and snippets.

@funador
Last active August 31, 2018 04:48
Show Gist options
  • Save funador/64acf4b251f0d4dd301854dd6f4dd260 to your computer and use it in GitHub Desktop.
Save funador/64acf4b251f0d4dd301854dd6f4dd260 to your computer and use it in GitHub Desktop.
import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faTimesCircle } from '@fortawesome/free-solid-svg-icons'
export default props =>
props.images.map((image, i) =>
<div key={i} className='fadein'>
<div
onClick={() => props.removeImage(image.public_id)}
className='delete'
>
<FontAwesomeIcon icon={faTimesCircle} size='2x' />
</div>
<img src={image.secure_url} alt='' />
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment