react-mason

React masonry component

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
react-mason
1331.1.26 years ago6 years agoMinified + gzip package size for react-mason in KB

Readme

react-mason
!Masonry usageheader-logo
react-mason is a masonry-grid component.

Installation

npm install react-mason

Usage

Pass children to the Masonry component
import React, { Component } from 'react';
import Masonry from 'react-mason';
import Photo from './Photo';

class PhotoAlbum extends Component {
  render() {
    return (
      <Masonry>
        {
          this.props.photos.map(photo => <Photo {...photo} />)
        }
      </Masonry>
    )
  }
}