react-beautiful-dnd
Version:
Beautiful, accessible drag and drop for lists with React.js
22 lines (16 loc) • 333 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var origin = { x: 0, y: 0 };
var noMovement = exports.noMovement = {
displaced: [],
amount: origin,
isBeyondStartPosition: false
};
var noImpact = {
movement: noMovement,
direction: null,
destination: null
};
exports.default = noImpact;