1import React from 'react'; 2import {StyleSheet, View} from 'react-native'; 3import rpx from '@/utils/rpx'; 4 5interface IListItemProps {} 6export default function ListItem(props: IListItemProps) { 7 console.log(props); 8 return <View style={styles.wrapper} />; 9} 10 11const styles = StyleSheet.create({ 12 wrapper: { 13 width: rpx(750), 14 }, 15}); 16