Repository URL to install this package:
|
Version:
4.0.76 ▾
|
import React from 'react';
import { defaultRenderProductList } from './renderProps';
import { DraggableProps, DraggableStateProps } from './typings';
export default class Draggable extends React.Component<DraggableProps, DraggableStateProps> {
static defaultProps: {
className: string;
renderProductList: typeof defaultRenderProductList;
};
observableState: DraggableStateProps;
render(): JSX.Element;
}
export { Draggable as DragAndDrop };