{"id":196442,"date":"2021-03-04T08:28:04","date_gmt":"2021-03-04T16:28:04","guid":{"rendered":"http:\/\/sharethis.com\/?page_id=196442"},"modified":"2025-11-14T08:29:55","modified_gmt":"2025-11-14T16:29:55","slug":"how-to-install-sharethis-tools-on-reactjs","status":"publish","type":"page","link":"http:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/","title":{"rendered":"How to Install ShareThis&#8217; Tools on ReactJS"},"content":{"rendered":"<p>In order for ShareThis tools to work on your ReactJs apps\/sites, please follow the steps below to install our Share Buttons, Follow Buttons, and\/or Reaction Buttons. Important note, you can learn more about ShareThis Website tools,\u00a0<a href=\"https:\/\/sharethis.com\/platform\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p><em>Note: The ReactJS module for ShareThis buttons are available within our <a href=\"https:\/\/github.com\/sharethis-github\/sharethis-reactjs\" target=\"_blank\" rel=\"noreferrer noopener\">Git repository<\/a> or <a href=\"https:\/\/www.npmjs.com\/package\/sharethis-reactjs\" target=\"_blank\" rel=\"noreferrer noopener\">NPMjs<\/a>.<\/em>\u00a0You can install the library inside your ReactJS app, using this command:<\/p>\n\n\n\n<p><code>npm install --save sharethis-reactjs<\/code><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>If you don\u2019t have a project set up yet, you can create a new react app here: <a rel=\"noreferrer noopener\" href=\"https:\/\/reactjs.org\/docs\/create-a-new-react-app.html\" data-type=\"URL\" data-id=\"https:\/\/reactjs.org\/docs\/create-a-new-react-app.html\" target=\"_blank\">https:\/\/reactjs.org\/docs\/create-a-new-react-app.html<\/a><\/li>\n\n\n\n<li>Run the following code in the terminal:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>npx create-react-app &lt;my-app&gt;\ncd &lt;my-app&gt;\nnpm start<\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>At the top of your component file, add the ShareThis tool that you would like to use in your project. We support the following: <ul><li>InlineReactionButtons<\/li><\/ul>\n<ul class=\"wp-block-list\">\n<li>InlineShareButtons<\/li>\n\n\n\n<li>StickyShareButtons<\/li>\n\n\n\n<li>InlineFollowButtons<br><br><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Add the component wherever you want the ShareThis tool to appear.<br><code>import {InlineReactionButtons} from 'sharethis-reactjs';<br>import {InlineShareButtons} from 'sharethis-reactjs';<br>import {StickyShareButtons} from 'sharethis-reactjs';<br>import {InlineFollowButtons} from 'sharethis-reactjs';<\/code><br><\/li>\n\n\n\n<li>Each tool has a set of configuration attributes that can be used to customize your buttons. See below for examples:<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-note\">Note<\/h3>\n\n\n\n<p>The Share Count is linked to the URL, if no URL is provided in the configuration attributes, it will use the URL where the buttons are located. Remember to customize or remove the URL in the example below.<\/p>\n\n\n\n<p><strong>Inline Share Buttons<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;InlineShareButtons\n          config={{\n            alignment: 'center',  \/\/ alignment of buttons (left, center, right)\n            color: 'social',      \/\/ set the color of buttons (social, white)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            font_size: 16,        \/\/ font size for the buttons\n            labels: 'cta',        \/\/ button labels (cta, counts, null)\n            language: 'en',       \/\/ which language to use (see LANGUAGES)\n            networks: [           \/\/ which networks to include (see SHARING NETWORKS)\n              'whatsapp',\n              'linkedin',\n              'messenger',\n              'facebook',\n              'twitter'\n            ],\n            padding: 12,          \/\/ padding within buttons (INTEGER)\n            radius: 4,            \/\/ the corner radius on each button (INTEGER)\n            show_total: true,\n            size: 40,             \/\/ the size of each button (INTEGER)\n\n\n            \/\/ OPTIONAL PARAMETERS\n\n            min_count: 10,                    \/\/ (threshold for total share count to be displayed)\n            url: 'https:\/\/www.sharethis.com', \/\/ (defaults to current url)\n            image: 'https:\/\/bit.ly\/2CMhCMC',  \/\/ (defaults to og:image or twitter:image)\n            description: 'custom text',       \/\/ (defaults to og:description or twitter:description)\n            title: 'custom title',            \/\/ (defaults to og:title or twitter:title)\n            message: 'custom email text',     \/\/ (only for email sharing)\n            subject: 'custom email subject',  \/\/ (only for email sharing)\n            username: 'custom twitter handle' \/\/ (only for twitter sharing)\n          }}\n        \/&gt;<\/code><\/pre>\n\n\n\n<p><strong>Sticky Share Buttons<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;StickyShareButtons\n          config={{\n            alignment: 'left',    \/\/ alignment of buttons (left, right)\n            color: 'social',      \/\/ set the color of buttons (social, white)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            font_size: 16,        \/\/ font size for the buttons\n            hide_desktop: false,  \/\/ hide buttons on desktop (true, false)\n            labels: 'counts',     \/\/ button labels (cta, counts, null)\n            language: 'en',       \/\/ which language to use (see LANGUAGES)\n            min_count: 0,         \/\/ hide react counts less than min_count (INTEGER)\n            networks: [           \/\/ which networks to include (see SHARING NETWORKS)\n              'linkedin',\n              'facebook',\n              'twitter',\n              'pinterest',\n              'email'\n            ],\n            padding: 12,          \/\/ padding within buttons (INTEGER)\n            radius: 4,            \/\/ the corner radius on each button (INTEGER)\n            show_total: true,     \/\/ show\/hide the total share count (true, false)\n            show_mobile: true,    \/\/ show\/hide the buttons on mobile (true, false)\n            show_toggle: true,    \/\/ show\/hide the toggle buttons (true, false)\n            size: 48,             \/\/ the size of each button (INTEGER)\n            top: 160,             \/\/ offset in pixels from the top of the page\n\n\n            \/\/ OPTIONAL PARAMETERS\n\n            min_count: 10,                    \/\/ (threshold for total share count to be displayed)\n            url: 'https:\/\/www.sharethis.com', \/\/ (defaults to current url)\n            image: 'https:\/\/bit.ly\/2CMhCMC',  \/\/ (defaults to og:image or twitter:image)\n            description: 'custom text',       \/\/ (defaults to og:description or twitter:description)\n            title: 'custom title',            \/\/ (defaults to og:title or twitter:title)\n            message: 'custom email text',     \/\/ (only for email sharing)\n            subject: 'custom email subject',  \/\/ (only for email sharing)\n            username: 'custom twitter handle' \/\/ (only for twitter sharing)\n\n          }}\n        \/&gt;<\/code><\/pre>\n\n\n\n<p><strong>Inline Follow Buttons<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;InlineFollowButtons\n          config={{\n            action: 'Follow us:', \/\/ call to action (STRING)\n            action_enable: true,  \/\/ show\/hide call to action (true, false)\n            action_pos: 'bottom', \/\/ position of call to action (left, top, right)\n            alignment: 'center',  \/\/ alignment of buttons (left, center, right)\n            color: 'white',       \/\/ set the color of buttons (social, white)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            networks: [           \/\/ which networks to include (see FOLLOW NETWORKS)\n              'twitter',\n              'facebook',\n              'instagram',\n              'youtube'\n            ],\n            padding: 8,           \/\/ padding within buttons (INTEGER)\n            profiles: {           \/\/ social profile links for buttons\n              twitter: 'sharethis',\n              facebook: 'sharethis',\n              instagram: 'sharethis',\n              youtube: '\/channel\/UCbM93niCmdc2RD9RZbLMP6A?view_as=subscriber'\n            },\n            radius: 9,            \/\/ the corner radius on each button (INTEGER)\n            size: 32,             \/\/ the size of each button (INTEGER)\n            spacing: 8            \/\/ the spacing between buttons (INTEGER)\n          }}\n        \/&gt;<\/code><\/pre>\n\n\n\n<p><strong>Inline Reaction Buttons<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;InlineReactionButtons\n          config={{\n            alignment: 'center',  \/\/ alignment of buttons (left, center, right)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            language: 'en',       \/\/ which language to use (see LANGUAGES)\n            min_count: 0,         \/\/ hide react counts less than min_count (INTEGER)\n            padding: 12,          \/\/ padding within buttons (INTEGER)\n            reactions: [          \/\/ which reactions to include (see REACTIONS)\n              'slight_smile',\n              'heart_eyes',\n              'laughing',\n              'astonished',\n              'sob',\n              'rage'\n            ],\n            size: 48,             \/\/ the size of each button (INTEGER)\n            spacing: 8,           \/\/ the spacing between buttons (INTEGER)\n\n\n            \/\/ OPTIONAL PARAMETERS\n\n            url: 'https:\/\/www.sharethis.com' \/\/ (defaults to current url)\n          }}\n        \/&gt;<\/code><\/pre>\n\n\n\n<p>Once you have completed customizing your button setup, \u00a0add your preferred network(s). Below are the network options you can choose from:<\/p>\n\n\n\n<p><strong>Sharing Networks<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"762\" src=\"http:\/\/sharethis.imgix.net\/2022\/07\/sharing-networks-min-1024x762.png?fm=webp&amp;auto=compress&amp;w=800q=1\" alt=\"\" class=\"wp-image-207159\" loading=\"eager\" srcset=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min-1024x762.png 1024w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min-300x223.png 300w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min-768x571.png 768w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min-1536x1142.png 1536w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png 1826w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Follow Networks<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/follow-networks-min.png\"><img decoding=\"async\" width=\"1024\" height=\"566\" src=\"http:\/\/sharethis.imgix.net\/2022\/07\/follow-networks-min-1024x566.png?fm=webp&amp;auto=compress&amp;w=800q=1\" alt=\"\" class=\"wp-image-207152\" loading=\"lazy\" srcset=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/follow-networks-min-1024x566.png 1024w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/follow-networks-min-300x166.png 300w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/follow-networks-min-768x424.png 768w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/follow-networks-min-1536x848.png 1536w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/follow-networks-min-2048x1131.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Reaction Buttons<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/reactions.png\"><img decoding=\"async\" width=\"1024\" height=\"180\" src=\"http:\/\/sharethis.imgix.net\/2022\/10\/reactions-1024x180.png?fm=webp&amp;auto=compress&amp;w=800q=1\" alt=\"\" class=\"wp-image-207940\" loading=\"lazy\" srcset=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/reactions-1024x180.png 1024w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/reactions-300x53.png 300w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/reactions-768x135.png 768w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/reactions-1536x270.png 1536w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/reactions.png 1558w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In order for ShareThis tools to work on your ReactJs apps\/sites, please follow the steps below to install our Share Buttons, Follow Buttons, and\/or Reaction Buttons. Important note, you can learn more about ShareThis Website tools,\u00a0here. Note: The ReactJS module for ShareThis buttons are available within our Git repository or NPMjs.\u00a0You can install the library [&hellip;]<\/p>\n","protected":false},"author":93,"featured_media":0,"parent":14951,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/page_single_support.php","meta":{"ghostkit_customizer_options":"","ghostkit_custom_css":"","ghostkit_custom_js_head":"","ghostkit_custom_js_foot":"","ghostkit_typography":"","footnotes":""},"class_list":["post-196442","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.9 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install ShareThis Tools on ReactJS | Step\u2011by\u2011Step Guide<\/title>\n<meta name=\"description\" content=\"Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons on ReactJS.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install ShareThis&#039; Tools on ReactJS\" \/>\n<meta property=\"og:description\" content=\"Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons on ReactJS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/\" \/>\n<meta property=\"og:site_name\" content=\"ShareThis\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-14T16:29:55+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1826\" \/>\n\t<meta property=\"og:image:height\" content=\"1358\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/\",\"url\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/\",\"name\":\"Install ShareThis Tools on ReactJS | Step\u2011by\u2011Step Guide\",\"isPartOf\":{\"@id\":\"https:\/\/sharethis.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min-1024x762.png\",\"datePublished\":\"2021-03-04T16:28:04+00:00\",\"dateModified\":\"2025-11-14T16:29:55+00:00\",\"description\":\"Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons on ReactJS.\",\"breadcrumb\":{\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#primaryimage\",\"url\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png\",\"contentUrl\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png\",\"width\":1826,\"height\":1358},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sharethis.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Support\",\"item\":\"https:\/\/sharethis.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Installation\",\"item\":\"https:\/\/sharethis.com\/support\/installation\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to Install ShareThis&#8217; Tools on ReactJS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sharethis.com\/#website\",\"url\":\"https:\/\/sharethis.com\/\",\"name\":\"ShareThis\",\"description\":\"Grow your audience with easy-to-use sharing tools.\",\"publisher\":{\"@id\":\"https:\/\/sharethis.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sharethis.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sharethis.com\/#organization\",\"name\":\"ShareThis\",\"url\":\"https:\/\/sharethis.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sharethis.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png\",\"contentUrl\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png\",\"width\":414,\"height\":86,\"caption\":\"ShareThis\"},\"image\":{\"@id\":\"https:\/\/sharethis.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"SoftwareApplication\",\"applicationCategory\":\"SocialNetworkingApplication\",\"offers\":{\"@type\":\"Offer\",\"price\":\"0.00\",\"priceCurrency\":\"USD\",\"category\":\"free\"},\"operatingSystem\":\"Web\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install ShareThis Tools on ReactJS | Step\u2011by\u2011Step Guide","description":"Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons on ReactJS.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ShareThis' Tools on ReactJS","og_description":"Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons on ReactJS.","og_url":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/","og_site_name":"ShareThis","article_modified_time":"2025-11-14T16:29:55+00:00","og_image":[{"width":1826,"height":1358,"url":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/","url":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/","name":"Install ShareThis Tools on ReactJS | Step\u2011by\u2011Step Guide","isPartOf":{"@id":"https:\/\/sharethis.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#primaryimage"},"image":{"@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#primaryimage"},"thumbnailUrl":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min-1024x762.png","datePublished":"2021-03-04T16:28:04+00:00","dateModified":"2025-11-14T16:29:55+00:00","description":"Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons on ReactJS.","breadcrumb":{"@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#primaryimage","url":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png","contentUrl":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/07\/sharing-networks-min.png","width":1826,"height":1358},{"@type":"BreadcrumbList","@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-tools-on-reactjs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sharethis.com\/"},{"@type":"ListItem","position":2,"name":"Support","item":"https:\/\/sharethis.com\/support\/"},{"@type":"ListItem","position":3,"name":"Installation","item":"https:\/\/sharethis.com\/support\/installation\/"},{"@type":"ListItem","position":4,"name":"How to Install ShareThis&#8217; Tools on ReactJS"}]},{"@type":"WebSite","@id":"https:\/\/sharethis.com\/#website","url":"https:\/\/sharethis.com\/","name":"ShareThis","description":"Grow your audience with easy-to-use sharing tools.","publisher":{"@id":"https:\/\/sharethis.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sharethis.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/sharethis.com\/#organization","name":"ShareThis","url":"https:\/\/sharethis.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sharethis.com\/#\/schema\/logo\/image\/","url":"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png","contentUrl":"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png","width":414,"height":86,"caption":"ShareThis"},"image":{"@id":"https:\/\/sharethis.com\/#\/schema\/logo\/image\/"}},{"@type":"SoftwareApplication","applicationCategory":"SocialNetworkingApplication","offers":{"@type":"Offer","price":"0.00","priceCurrency":"USD","category":"free"},"operatingSystem":"Web"}]}},"_links":{"self":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/196442","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/users\/93"}],"replies":[{"embeddable":true,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/comments?post=196442"}],"version-history":[{"count":1,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/196442\/revisions"}],"predecessor-version":[{"id":210210,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/196442\/revisions\/210210"}],"up":[{"embeddable":true,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/14951"}],"wp:attachment":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/media?parent=196442"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}