From 3f2300467eb281540b33a910edd7134169d2805e Mon Sep 17 00:00:00 2001 From: lParanhos Date: Mon, 30 Mar 2020 08:31:43 -0300 Subject: [PATCH] Adjust share option --- src/components/SocialShare/index.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/components/SocialShare/index.js b/src/components/SocialShare/index.js index 92a48bd..fe08b99 100644 --- a/src/components/SocialShare/index.js +++ b/src/components/SocialShare/index.js @@ -1,12 +1,16 @@ import React from "react"; -const SocialShare = () => ( -
- - +const SocialShare = () => { + const link = window.location.href; + + return ( +
+ + -
-); +
+ ); +} export default SocialShare; \ No newline at end of file