@hmilin/react-lazy-image
v0.0.3
Published
A react component for lazy loading images
Downloads
2
Readme
React Lazy Image
A react component for lazy loading images.
Installation
$ npm install --save @hmilin/react-lazy-image
Usage
import React from "react";
const App = () => {
return (
<div>
<LazyImage src="/vite.svg" />
</div>
);
};