import { AtListItem } from 'taro-ui'; import { ListItemProps } from '../../../@types/list-item'; import Taro from '@tarojs/taro'; const ListItem: React.FC = props => { return {props.children}; }; export default ListItem;