@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
10 lines (9 loc) • 326 B
TypeScript
import { ReactNode } from 'react';
import { Accept } from 'react-dropzone';
export declare function DropZone(props: {
children?: ReactNode;
onDrop: (contents: string) => void;
isDisabled?: boolean;
inputRef?: React.RefObject<HTMLInputElement>;
accept?: Accept;
}): import("react/jsx-runtime").JSX.Element;