react-masonry-view
v1.0.7
Published
React Masonry View is responsive react library for showing simple masonry.
Downloads
10
Readme
React Masonry View
React Masonry View is responsive react library for showing simple masonry.
Features
- Responsive
- Lightweight
Installation
Install with npm
npm install react-masonry-view
Install with yarn
yarn add react-masonry-viewUsage/Examples
import { MasonryView } from 'react-masonry-view'
import 'react-masonry-view/dist/index.css'
function App() {
const imgArray = [
{
id: 1,
imgUrl: "https://source.unsplash.com/random"
},
{
id: 2,
imgUrl: "https://source.unsplash.com/random"
},
{
id: 3,
imgUrl: "https://source.unsplash.com/random"
},
{
id: 4,
imgUrl: "https://source.unsplash.com/random"
}
]
return <MasonryView imgDetails={imgArray} />
}Live Demo
Screenshot/Demo
Desktop View

Mobile View

License
MIT © imkrunalkanojiya
