import React from 'react'; import { Box, Heading, Image } from 'grommet'; import placeholder from '../assets/placeholder-music.jpg'; export const Album = ({ image, name }: { image: string; name: string }) => { // Load placeholder image if none provided if (!image) { image = placeholder; } return ( {name} ); };