xref: /MusicFree/src/pages/searchPage/components/resultPanel/results/defaultResults.tsx (revision 5d19d26c98d1c233995663070b95e5f28b5b9e1c)
1import React from 'react';
2import {StyleSheet, Text, View} from 'react-native';
3import rpx from '@/utils/rpx';
4
5export default function DefaultResults() {
6    return (
7        <View style={style.wrapper}>
8            <Text>敬请期待</Text>
9        </View>
10    );
11}
12
13const style = StyleSheet.create({
14    wrapper: {
15        width: rpx(750),
16    },
17});
18