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.

21 lines
400 B

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