mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
21 lines
448 B
JavaScript
21 lines
448 B
JavaScript
import React from 'react';
|
|
import Dropdown from 'rc-dropdown';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
transitionName: 'slide-up',
|
|
prefixCls: 'ant-dropdown',
|
|
};
|
|
},
|
|
render() {
|
|
const { overlay, ...otherProps } = this.props;
|
|
const menu = React.cloneElement(overlay, {
|
|
openTransitionName: 'zoom-big',
|
|
});
|
|
return (
|
|
<Dropdown {...otherProps} overlay={menu} />
|
|
);
|
|
}
|
|
});
|