1d384662fS猫头猫import React from 'react'; 2d384662fS猫头猫import useTopListDetail from './hooks/useTopListDetail'; 3d384662fS猫头猫import {useParams} from '@/entry/router'; 4*be539549S猫头猫import MusicSheetPage from '@/components/musicSheetPage'; 5d384662fS猫头猫 6d384662fS猫头猫export default function TopListDetail() { 7d384662fS猫头猫 const {pluginHash, topList} = useParams<'top-list-detail'>(); 8d384662fS猫头猫 const topListDetail = useTopListDetail(topList, pluginHash); 9d384662fS猫头猫 10*be539549S猫头猫 return <MusicSheetPage navTitle="榜单" sheetInfo={topListDetail} />; 11d384662fS猫头猫} 12