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.

18 lines
293 B

10 years ago
'use strict';
var React = require('react');
var Dropdown = require('rc-dropdown');
module.exports = React.createClass({
getDefaultProps: function() {
10 years ago
return {
animation: 'slide-up'
};
},
render: function() {
return (
10 years ago
<Dropdown {...this.props} />
);
}
});