Skip to content

Instantly share code, notes, and snippets.

View davi1985's full-sized avatar
💭
I may be slow to respond.

Davi Silva davi1985

💭
I may be slow to respond.
View GitHub Profile
@yano3nora
yano3nora / img_onerror.jsx
Created December 13, 2018 05:07
[react: Image onError] Behavior on error of image tag. #react #js
<img
src={this.props.img_url}
alt={this.props.img_alt}
onError={(e) => {
e.target.onerror = null
e.target.src = '/img/error-image.png'
}}
/>