I have a react component that is the detail view from a list.
I am trying to replace the image with a default image if the image does not exist and there is a 404 er
For those like me who also wanted to change the styles of the element and/or change the img source, just do something like this:
{ e.target.src = '/example/noimage.png' // some replacement image e.target.style = 'padding: 8px; margin: 16px' // inline styles in html format }} />
Hope it helps!