import { AtCheckbox } from 'taro-ui'; import { CheckboxProps } from '../../../@types/checkbox'; import Taro from '@tarojs/taro'; const Checkbox: React.FC = props => { return {props.children}; }; export default Checkbox;