diff --git a/picture-gallery-client/src/ImageGallery/FolderGallery.tsx b/picture-gallery-client/src/ImageGallery/FolderGallery.tsx index bff407a..d176f40 100644 --- a/picture-gallery-client/src/ImageGallery/FolderGallery.tsx +++ b/picture-gallery-client/src/ImageGallery/FolderGallery.tsx @@ -13,37 +13,62 @@ export const FolderGallery = ({ folders }: { folders: FolderPreview[] }) => { const columns = useColumns(); return ( - - {folders.map((folder) => ( - - {/* Link and image styling taken from https://github.com/mui/material-ui/issues/22597 */} - - {folder.name} - - } - /> - - - ))} - + <> + + {folders.map((folder) => ( + + {/* Link and image styling taken from https://github.com/mui/material-ui/issues/22597 */} + + {folder.name} + + } + /> + + + ))} + + {/* External svg does not seem to work (anymore?) */} + {/* see for example https://codepen.io/imohkay/pen/GJpxXY */} + + + + {/* Taken from MUI Folder Icon*/} + + + + + ); };