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