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.

20 lines
350 B

'use strict';
10 years ago
var React = require('react');
var Select = require('rc-select');
10 years ago
module.exports = React.createClass({
10 years ago
getDefaultProps: function () {
10 years ago
return {
10 years ago
prefixCls: 'ant-select',
transitionName: 'slide-up',
showSearch: false
10 years ago
};
},
10 years ago
render: function () {
10 years ago
return (
<Select {...this.props} />
);
}
});