react-waterfall-responsive
v2.0.1
Published
### Install with npm
Downloads
11
Readme
Waterfall-react 瀑布流组件
Install with npm
npm i react-waterfall-responsivedemo
Usage
<Waterfall
columnNum={4}
gap={5}
>
{
items.map((item, index) => (
<ChildComponent
key={index}
width={width}
height={height}
/>
))
}
</Waterfall>- columnNum:瀑布流的列数
- gap:间距
