2016-07-07 20:25:03 +08:00
|
|
|
import * as React from 'react';
|
2016-03-31 17:46:35 +08:00
|
|
|
import Select from '../select';
|
|
|
|
|
|
|
|
export default class MiniSelect extends React.Component {
|
|
|
|
static Option = Select.Option;
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <Select size="small" {...this.props} />;
|
|
|
|
}
|
|
|
|
}
|