xref: /MusicFree/src/pages/topList/index.tsx (revision 7a8d024e62c773caa4d0887b9fec4611e8a8ef82)
1d52aa40eS猫头猫import React from 'react';
2d52aa40eS猫头猫import TopListBody from './components/topListBody';
3d52aa40eS猫头猫import MusicBar from '@/components/musicBar';
43b155a65S猫头猫import VerticalSafeAreaView from '@/components/base/verticalSafeAreaView';
53b155a65S猫头猫import globalStyle from '@/constants/globalStyle';
63b155a65S猫头猫import HorizonalSafeAreaView from '@/components/base/horizonalSafeAreaView';
7*7a8d024eS猫头猫import AppBar from '@/components/base/appBar';
8d52aa40eS猫头猫
9d52aa40eS猫头猫export default function TopList() {
10d52aa40eS猫头猫    return (
113b155a65S猫头猫        <VerticalSafeAreaView style={globalStyle.fwflex1}>
12*7a8d024eS猫头猫            <AppBar withStatusBar>榜单</AppBar>
133b155a65S猫头猫            <HorizonalSafeAreaView style={globalStyle.flex1}>
14d52aa40eS猫头猫                <TopListBody />
153b155a65S猫头猫            </HorizonalSafeAreaView>
16d52aa40eS猫头猫            <MusicBar />
173b155a65S猫头猫        </VerticalSafeAreaView>
18d52aa40eS猫头猫    );
19d52aa40eS猫头猫}
20