2019-03-04 07:45:21 +00:00
|
|
|
// based on vc-select 8.9.0
|
2019-01-12 03:33:27 +00:00
|
|
|
import ProxySelect, { Select } from './Select';
|
|
|
|
import Option from './Option';
|
|
|
|
import { SelectPropTypes } from './PropTypes';
|
|
|
|
import OptGroup from './OptGroup';
|
|
|
|
Select.Option = Option;
|
|
|
|
Select.OptGroup = OptGroup;
|
|
|
|
ProxySelect.Option = Option;
|
|
|
|
ProxySelect.OptGroup = OptGroup;
|
|
|
|
export { Select, Option, OptGroup, SelectPropTypes };
|
|
|
|
export default ProxySelect;
|