8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
|
import Select, { ExportedSelectProps } from './Select';
|
||
|
import Option from './Option';
|
||
|
import OptGroup from './OptGroup';
|
||
|
type SelectProps = ExportedSelectProps;
|
||
|
export { Option, OptGroup, SelectProps };
|
||
|
|
||
|
export default Select;
|