Created
August 5, 2018 08:03
-
-
Save noateden/713c4e64c3b513b6bb53dad1c0bf16ba to your computer and use it in GitHub Desktop.
Get started with ReacJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Getting started with ReactJS</title> | |
</head> | |
<body> | |
<-- Create a button --> | |
<div id="like_button_container"></div> | |
<-- Add ReactJS --> | |
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script> | |
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script> | |
<-- Add our script file --> | |
<script src="like_button.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment