Haw can I add the caption to react-gallery-component

Viewed 579
1 Answers

It's unfortunately not as easy as it could be to add captions using react-photo-gallery, but it's not insurmountable.

react-photo-gallery supports defining a custom image renderer, and you need to create one of these that knows what to do with captions. I did this today and posted a simple example in this sandbox. Note that I added a caption to each image in photos.js, defined the custom image renderer in ImageWithCaption.js, and added some styling in styles.css.

Credits:

Related