ant-design/components/dropdown/dropdown.tsx
2016-07-29 14:06:27 +08:00

16 lines
337 B
TypeScript

import * as React from 'react';
import RcDropdown from 'rc-dropdown';
export default class Dropdown extends React.Component {
static defaultProps = {
transitionName: 'slide-up',
prefixCls: 'ant-dropdown',
mouseEnterDelay: 0.15,
mouseLeaveDelay: 0.1,
};
render() {
return <RcDropdown {...this.props} />;
}
}