import * as React from 'react';
import Draggable from '../Draggable';
import { draggableTestkitFactory } from '../../../testkit';
import { draggableTestkitFactory as draggableEnzymeTestkitFactory } from '../../../testkit/enzyme';
import * as enzyme from 'enzyme';
function DraggableWithMandatoryProps() {
return ;
}
function DraggableWithAllProps() {
return (
{}}
containerId="aa"
delay={10}
droppable
groupName="name"
hasDragged
id="1"
index={1}
item={{}}
listOfPropsThatAffectItems={[]}
onDragEnd={_params => {}}
onDragStart={_params => {}}
onDrop={() => {}}
onHover={_params => {}}
onMoveOut={_params => {}}
renderItem={_params => }
setWrapperNode={(_node, _index, _item) => {}}
shift={[10]}
withHandle
/>
);
}
async function testkits() {
const testkit = draggableTestkitFactory({
dataHook: 'hook',
wrapper: document.createElement('div'),
});
const enzymeTestkit = draggableEnzymeTestkitFactory({
dataHook: 'hook',
wrapper: enzyme.mount(),
});
}