import useIsMobile from '@/web/hooks/useIsMobile'
const ArtistInfo = ({ artist }: { artist?: Artist }) => {
const isMobile = useIsMobile()
return (
{artist?.name}
Artist
{artist?.musicSize} Tracks · {artist?.albumSize} Albums ·{' '}
{artist?.mvSize} Videos
{/* Description */}
{!isMobile && (
{artist?.briefDesc}
)}
)
}
export default ArtistInfo