import { imageUrl, type Album } from "api/api"; import { Link } from "react-router"; interface Props { album: Album size: number } export default function AlbumDisplay({ album, size }: Props) { return (
{album.title}

{album.title}

{album.listen_count} plays

) }