@progress/kendo-react-sortable
Version:
React Sortable provides a sortable drag-and-drop functionality to elements within a list. KendoReact Sortable package
19 lines (18 loc) • 770 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as r from "react";
import { Sortable as f } from "./Sortable.mjs";
import { useMergedRef as m, useWebMcpRegister as c } from "@progress/kendo-react-common";
const n = r.forwardRef((e, t) => {
const [o, a] = m(t);
return c("sortable", o, e, e.webMcp), /* @__PURE__ */ r.createElement(f, { ...e, ref: a });
});
n.displayName = "KendoReactSortable";
export {
n as SortableWrapper
};