diff --git a/src/components/photo-grid.tsx b/src/components/photo-grid.tsx index 55331e9829fa8f75f8b7f7f1f7513949254154e3..2e8059952172ac311a6e15c45a4c8ff9f23c46a1 100644 --- a/src/components/photo-grid.tsx +++ b/src/components/photo-grid.tsx @@ -1,5 +1,5 @@ /* */ - +import PhotoAlbum from "react-photo-album"; const images = [ {src:"https://static.igem.wiki/teams/5247/photos/meetup/badges.jpeg", width: 320, height: 212}, {src:"https://static.igem.wiki/teams/5247/photos/meetup/joern.jpeg", width: 320, height: 212}, @@ -38,11 +38,7 @@ export default function BFHGallery(){ return( <div> - - - {/* - <Gallery images={images} enableImageSelection={false}/> - */} + <PhotoAlbum layout="rows" photos={images} />; </div> ) }