import * as React from 'react'; import { Select, Row, Col } from '@btri-ui/base'; const { Option, OptGroup } = Select; const handleChange = (value: string) => { console.log(`selected ${value}`); }; const optgroup = () => { return ( ); }; export default optgroup;