Add placeholder image where needed

This commit is contained in:
2020-07-24 14:46:17 +02:00
parent cfc628fa59
commit b6a77263c8
5 changed files with 24 additions and 7 deletions

View File

@@ -1,7 +1,14 @@
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 (
<Box round='xxsmall' elevation='small' overflow='hidden'>
<Box height='300px'>