/** * Action exports - the public API for drag and drop functionality. * * These are the two actions consumers use: * - draggable: Makes an element draggable * - droppable: Makes an element accept drops * * Both can be applied to the same element to create a sortable item. */ export { draggable } from './draggable.js'; export { droppable } from './droppable.js';