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
400 B

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