React component that tries to load image from the list and renders the first successfully loaded one
npm install react-loadable-imagebash
yarn add react-loadable-image
`
or
`bash
npm install --save react-loadable-image
`Usage
`js
import Image from 'react-loadable-image';const Example = ({ images }) => (
className="photo"
sources={images}
placeholder={
}
/>
)
``