xref: /MusicFree/src/pages/artistDetail/components/content/musicContentItem.tsx (revision 4060c00a75883036bbd315fb25c90065209312b3)
1a3b33415S猫头猫import React from 'react';
2a3b33415S猫头猫import MusicItem from '@/components/mediaItem/musicItem';
3a3b33415S猫头猫
4a3b33415S猫头猫interface IMusicContentProps {
5*4060c00aS猫头猫    item: IMusic.IMusicItem;
6a3b33415S猫头猫}
7a3b33415S猫头猫export default function MusicContentItem(props: IMusicContentProps) {
8a3b33415S猫头猫    const {item} = props;
9*4060c00aS猫头猫    return <MusicItem musicItem={item} />;
10a3b33415S猫头猫}
11