1a3b33415S猫头猫import React from 'react'; 2a3b33415S猫头猫import AlbumItem from '@/components/mediaItem/albumItem'; 3a3b33415S猫头猫 4a3b33415S猫头猫interface IAlbumContentProps { 5a3b33415S猫头猫 item: IAlbum.IAlbumItem; 6a3b33415S猫头猫} 7a3b33415S猫头猫export default function AlbumContentItem(props: IAlbumContentProps) { 8a3b33415S猫头猫 const {item} = props; 9*4060c00aS猫头猫 return <AlbumItem albumItem={item} />; 10a3b33415S猫头猫} 11