A react hook for pre-loading images.
npm install react-use-imageA react hook for pre-loading images.
``bash
npm i react-use-image
yarn add react-use-image
`
`jsx
import useImage from 'react-use-image';
const Example = ({ src }) => {
// use the hook
// pass it an image source url
const { loaded } = useImage(src);
if (!loaded) return null;
return ;
};
`
Image URL, e.g.
`js
{
"loaded": false, // image found and loaded
"failed": false, // image not found
// actual size of the image
"dimensions": {
"width": 0, // width of image in pixels
"height": 0 // height of image in pixels
}
}
``
- Storybook coming soon
Joe Seifi
MIT