1.0.4 • Published 4 years ago

@abdulghani/masonrygrid v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Breakpointcontext

React.js flexbox-based masonry grid with determned column and sequentially rendered item.

Install

get it from yarn/npm whatever

yarn add @abdulghani/masonrygrid

npm install @abdulghani/masonrygrid

Usage

use it as simple as

import MasonryGrid from "@abdulghani/masonrygrid";

const MyComponent = () => {
  return (
    <MasonryGrid col={3} className="mx-3">
      {products.map((item: any) => (
        <Product key={item.id} value={item} />
      ))}
    </MasonryGrid>
  );
};

// the className will applied to each column element
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago