@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
16 lines • 683 B
TypeScript
import * as React from 'react';
interface DroppableProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered inside DragDrop */
children?: React.ReactNode;
/** Class to add to outer div */
className?: string;
/** Name of zone that items can be dragged between. Should specify if there is more than one Droppable on the page. */
zone?: string;
/** Id to be passed back on drop events */
droppableId?: string;
/** Don't wrap the component in a div. Requires passing a single child. */
hasNoWrapper?: boolean;
}
export declare const Droppable: React.FunctionComponent<DroppableProps>;
export {};
//# sourceMappingURL=Droppable.d.ts.map