index.js 367 B

1234567
  1. var Dragact = require('./dist/lib/dragact').Dragact;
  2. // Previous versions of this lib exported <Draggable> as the root export. As to not break
  3. // them, or TypeScript, we export *both* as the root and as 'default'.
  4. // See https://github.com/mzabriskie/react-draggable/pull/254
  5. // and https://github.com/mzabriskie/react-draggable/issues/266
  6. exports.Dragact = Dragact;