summaryrefslogtreecommitdiff
path: root/react/01-helloworld-js/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'react/01-helloworld-js/index.html')
-rw-r--r--react/01-helloworld-js/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/react/01-helloworld-js/index.html b/react/01-helloworld-js/index.html
new file mode 100644
index 0000000..0cdbeaf
--- /dev/null
+++ b/react/01-helloworld-js/index.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>Hello World! : React</title>
+
+ <!-- Download the JS files from: https://reactjs.org/docs/cdn-links.html -->
+ <script src="js/react.development.js"></script>
+ <script src="js/react-dom.development.js"></script>
+ </head>
+
+ <body>
+ <div id="root"></div>
+
+ <script src="js/helloworld.js"></script>
+ </body>
+</html>