react-bnb-gallery icon indicating copy to clipboard operation
react-bnb-gallery copied to clipboard

Allow React nodes to be passed to caption and subcaption options

Open benwigley opened this issue 4 years ago • 0 comments

This PR allows React nodes to be passed to the caption and subcaption options of the photo object.

This is useful for when you want to give credit to the author of the photo with a link.

{
  // other options...
  subcaption: (
    <span>
      Photo by
        <a href={photo.creditUrl}>
          {photo.creditName}
        </a>
    </span>
  ),
}

benwigley avatar Oct 02 '20 15:10 benwigley