react-beautiful-grid-dnd_2
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

react-beautiful-dnd-grid

Installation

npm i react-beautiful-dnd-grid --save-dev

Demo

https://stackblitz.com/edit/react-beautiful-dnd-grid-demo

Demo gif

Usage

import React from "react";
import { ListManager } from "react-beautiful-dnd-grid";

const noop = function() {};

const list = [{ id: "0" }, { id: "1" }, { id: "2" }, { id: "3" }, { id: "4" }];

const ListElement = props => <div>id: {props.item.id}</div>;

const Component = () => (
  <ListManager
    items={list}
    direction="horizontal"
    maxItems={3}
    render={item => <ListElement item={item} />}
    onDragEnd={noop}
  />
);

Readme

Keywords

Package Sidebar

Install

npm i react-beautiful-grid-dnd_2

Weekly Downloads

3

Version

0.0.2

License

MIT

Unpacked Size

1.41 MB

Total Files

52

Last publish

Collaborators

  • himanshu1024