ant-design/components/pagination/MiniSelect.tsx
2016-07-07 20:25:03 +08:00

11 lines
228 B
TypeScript

import * as React from 'react';
import Select from '../select';
export default class MiniSelect extends React.Component {
static Option = Select.Option;
render() {
return <Select size="small" {...this.props} />;
}
}