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.

19 lines
340 B

import React from 'react';
import Select from 'rc-select';
export default React.createClass({
getDefaultProps() {
10 years ago
return {
10 years ago
prefixCls: 'ant-select',
transitionName: 'slide-up',
optionLabelProp: 'children',
showSearch: false
10 years ago
};
},
render() {
10 years ago
return (
<Select {...this.props} />
);
}
});