import * as React from 'react'; import Upload from './Upload'; import { UploadProps } from './interface'; export type DraggerProps = UploadProps & { height?: number }; const Dragger = (props: DraggerProps) => ( ); export default Dragger;