Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pinterest share button functionality not working using react-share library

<PinterestShareButton url={localHostShareUrl}> <PinterestIcon size={35} round={true} /> </PinterestShareButton>

I use this component to share blogs.I use facebook,twitter,linkedin and pininterst components using react-share.But when i click on pininterest button it doesn't popup share box but other platforms work smoothly.Anyone help me to figure this issue.Is this the problem with the package?

like image 324
Britto Thomas Avatar asked Aug 26 '26 05:08

Britto Thomas


1 Answers

You'll need to include both "url" and "media" parameters in the PinterestShareButton to create the pop up.

<PinterestShareButton url={url} media={url} description="">
 <PinterestIcon />
</PinterestShareButton>
like image 100
ychen94 Avatar answered Aug 31 '26 12:08

ychen94