You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
310 B

import React from 'react';
import Dropdown from 'rc-dropdown';
10 years ago
export default React.createClass({
9 years ago
getDefaultProps: function () {
10 years ago
return {
10 years ago
transitionName: 'slide-up',
10 years ago
prefixCls: 'ant-dropdown'
10 years ago
};
},
9 years ago
render: function () {
return (
10 years ago
<Dropdown {...this.props} />
);
}
});