Last active
August 31, 2018 04:48
-
-
Save funador/64acf4b251f0d4dd301854dd6f4dd260 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { 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