I am using react-share and I wonder how /if its possible to share a link insight the email, facebook, twitter etc? I was thinking of just including an a tag but that doesnt work and I> couldnt find anything online. Any ideas? Thanks!!
<EmailShareButton
url="www.example.com"
subject="subject"
body={"hey there, pls share my link" + <a href="www.example.com">Link</a>}
className="Demo__some-network__share-button">
<EmailIcon
size={40}
round/>
</EmailShareButton>
<FacebookShareButton
url="www.example.com"
quote="link"
className="Demo__some-network__share-button">
<FacebookIcon
size={40}
round
/>
</FacebookShareButton>
...