ant-design/components/pagination/MiniSelect.tsx

11 lines
238 B
TypeScript
Raw Normal View History

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<any, any> {
2016-03-31 17:46:35 +08:00
static Option = Select.Option;
render() {
return <Select size="small" {...this.props} />;
}
}