├── .gitignore ├── README.md ├── package.json ├── public └── index.html └── src ├── App.js ├── Card.js ├── CardContent.js ├── CardDragLayer.js ├── CardsDragPreview.js ├── Container.js ├── ItemTypes.js ├── index.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/Card.js -------------------------------------------------------------------------------- /src/CardContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/CardContent.js -------------------------------------------------------------------------------- /src/CardDragLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/CardDragLayer.js -------------------------------------------------------------------------------- /src/CardsDragPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/CardsDragPreview.js -------------------------------------------------------------------------------- /src/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/Container.js -------------------------------------------------------------------------------- /src/ItemTypes.js: -------------------------------------------------------------------------------- 1 | export default { 2 | CARD: "card" 3 | }; 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/znwang25/react-dnd-multiple-selection/HEAD/src/styles.css --------------------------------------------------------------------------------