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
+7
View File
@@ -1,6 +1,8 @@
import React from 'react';
import { Box, Heading } from 'grommet';
import placeholder from '../assets/placeholder-music.jpg';
export const Other = ({
image,
name,
@@ -10,6 +12,11 @@ export const Other = ({
name: string;
handleClick: (name: string) => void;
}) => {
// Load placeholder image if none provided
if (!image) {
image = placeholder;
}
return (
<Box
round='xxsmall'