xref: /MusicFree/src/pages/searchPage/components/resultPanel/results/defaultResults.tsx (revision bf6e62f27bf21a011995d7561e0093fae1a2d72e)
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