1import React from 'react'; 2import TopListBody from './components/topListBody'; 3import MusicBar from '@/components/musicBar'; 4import VerticalSafeAreaView from '@/components/base/verticalSafeAreaView'; 5import globalStyle from '@/constants/globalStyle'; 6import HorizontalSafeAreaView from '@/components/base/horizontalSafeAreaView.tsx'; 7import AppBar from '@/components/base/appBar'; 8 9export default function TopList() { 10 return ( 11 <VerticalSafeAreaView style={globalStyle.fwflex1}> 12 <AppBar withStatusBar>榜单</AppBar> 13 <HorizontalSafeAreaView style={globalStyle.flex1}> 14 <TopListBody /> 15 </HorizontalSafeAreaView> 16 <MusicBar /> 17 </VerticalSafeAreaView> 18 ); 19} 20