Add React to a Website: Step 2: Add the Script Tags

<!-- ... other HTML ... -->

  <!-- Load React. -->
  <!-- Note: when deploying, replace "development.js" with "production.min.js". -->
  <script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
  <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>

  <!-- Load our React component. -->
  <script src="like_button.js"></script>

</body>

Add three 'script' tags to the HTML page right before the closing '/body' tag.

Add React to a Website: Step 2: Add the Script Tags — Structure map

Clickable & Draggable!

Add React to a Website: Step 2: Add the Script Tags — Related pages: