react-native-sortables
Version:
Powerful Sortable Components for Flexible Content Reordering in React Native
17 lines (15 loc) • 403 B
JavaScript
;
import React from "react";
import { LayerProvider } from '../../providers';
/** Props for the Sortable Layer component */
import { jsx as _jsx } from "react/jsx-runtime";
export default function SortableLayer({
children,
disabled = false
}) {
return /*#__PURE__*/_jsx(LayerProvider, {
disabled: disabled,
children: children
});
}
//# sourceMappingURL=SortableLayer.js.map