import React from 'react'; import { Box, Text } from 'grommet'; import placeholder from '../assets/placeholder-music.jpg'; export const Other = ({ image, name, handleClick, }: { image: string; name: string; handleClick: (name: string) => void; }) => { // Load placeholder image if none provided if (!image) { image = placeholder; } return ( handleClick(name)} width='130px' > {name} ); };