xref: /MusicFree/src/pages/topList/index.tsx (revision 2aa881935ca35b8fb1abc4206e0dc35149231456)
1import React from 'react';
2import {StyleSheet} from 'react-native';
3import rpx from '@/utils/rpx';
4import {SafeAreaView} from 'react-native-safe-area-context';
5import StatusBar from '@/components/base/statusBar';
6import SimpleAppBar from '@/components/base/simpleAppBar';
7import TopListBody from './components/topListBody';
8import MusicBar from '@/components/musicBar';
9
10export default function TopList() {
11    return (
12        <SafeAreaView style={style.wrapper}>
13            <StatusBar />
14            <SimpleAppBar title="榜单" />
15            <TopListBody />
16            <MusicBar />
17        </SafeAreaView>
18    );
19}
20
21const style = StyleSheet.create({
22    wrapper: {
23        width: rpx(750),
24        flex: 1,
25    },
26});
27