wix-style-react
Version:
12 lines • 441 B
JavaScript
import React from 'react';
import { Draggable } from '../DragAndDrop/Draggable';
import { dataHooks } from './constants';
export default (function (Component) {
return function (props) {
return /*#__PURE__*/React.createElement("div", {
"data-hook": props.dataHook
}, /*#__PURE__*/React.createElement(Draggable.Manager, {
dataHook: dataHooks.provider
}, /*#__PURE__*/React.createElement(Component, props)));
};
});