1import React from 'react'; 2import {StyleSheet, Text, View} from 'react-native'; 3import rpx from '@/utils/rpx'; 4 5interface IDefaultResultsProps {} 6export default function DefaultResults(props: IDefaultResultsProps) { 7 return ( 8 <View> 9 <Text>敬请期待</Text> 10 </View> 11 ); 12} 13 14const style = StyleSheet.create({ 15 wrapper: { 16 width: rpx(750), 17 }, 18}); 19