import * as React from "react";
import {
CustomGesture,
defineHold, defineSwipe, Draggable, DraggableCallbackArgument, DraggableStyle, Holdable, HoldableConfig,
HoldableProps, HoldConfig, moves, SwipeConfig, Swipeable, SwipeableConfig, SwipeableProps
} from "react-touch";
export class HoldableTest extends React.PureComponent {
render() {
const holdConfig: HoldConfig = {};
const config: HoldableConfig = defineHold(holdConfig);
const props: HoldableProps = {
config,
onHoldComplete() {
return;
}
};
return