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'; 6*740e3947S猫头猫import HorizontalSafeAreaView from '@/components/base/horizontalSafeAreaView.tsx'; 77a8d024eS猫头猫import AppBar from '@/components/base/appBar'; 8d52aa40eS猫头猫 9d52aa40eS猫头猫export default function TopList() { 10d52aa40eS猫头猫 return ( 113b155a65S猫头猫 <VerticalSafeAreaView style={globalStyle.fwflex1}> 127a8d024eS猫头猫 <AppBar withStatusBar>榜单</AppBar> 13*740e3947S猫头猫 <HorizontalSafeAreaView style={globalStyle.flex1}> 14d52aa40eS猫头猫 <TopListBody /> 15*740e3947S猫头猫 </HorizontalSafeAreaView> 16d52aa40eS猫头猫 <MusicBar /> 173b155a65S猫头猫 </VerticalSafeAreaView> 18d52aa40eS猫头猫 ); 19d52aa40eS猫头猫} 20