Img with fallback to placeholder on image load error
This library works as a substitute for your <img>
tag. The only difference is you can send a placeholder
text and the library will generate an image with that text using dummyimage.com
I created this component for busy.org app. It's open source, take a look!
npm i react-advanced-img --save
import React from 'react';
import Img from 'react-advanced-img';
export default MyImageComp extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<Img
src='http://wrongImageUrl'
placeholder='Yay!!'
/>
);
}
}
className
, style
, width
, height
, placeholder
, src
MIT