Skip to content

Instantly share code, notes, and snippets.

@G710
G710 / Card.jsx
Created August 15, 2018 18:59
Quick blueprint / react-dnd implementation
// Let's make <Card text='Write the docs' /> draggable!
import * as React from "react";
import { DragSource } from "react-dnd";
/**
* Implements the drag source contract.
*/
const cardSource = {
beginDrag(props) {