mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
be13831d92
* docs: add demo to re-produce bug * fix: dragger should work with form decorator, close: #5334 * test: update snapshot
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
import React from 'react';
|
|
import Upload from './Upload';
|
|
import { UploadProps } from './interface';
|
|
|
|
export type DraggerProps = UploadProps & { height?: number };
|
|
|
|
export default class Dragger extends React.Component<DraggerProps, any> {
|
|
render() {
|
|
const { props } = this;
|
|
return <Upload {...props} type="drag" style={{ height: props.height }}/>;
|
|
}
|
|
}
|