Image Tag Rendering
"React Image is an
<img>
tag replacement and hook for React.js, supporting fallback to alternate sources when loading an image fails.React Image allows one or more images to be used as fallback images in the event that the browser couldn't load the previous image. When using the component, you can specify any React element to be used before an image is loaded (i.e. a spinner) or in the event that the specified image(s) could not be loaded. When using the hook this can be achieved by wrapping the component with
<Suspense>
and specifying the fallback prop.React Image uses the useImage hook internally which encapsulates all the image loading logic. This hook works with React Suspense by default and will suspend painting until the image is downloaded and decoded by the browser."