summaryrefslogtreecommitdiff
path: root/react/01-helloworld-js/index.html
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-06-20 20:00:35 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-06-20 20:00:35 +0530
commit59c2d3502259b338c36991ced8dc25d8dc9713b1 (patch)
tree7d1d87b54f2da5a269bb55d99d01f5d7b0dca1f0 /react/01-helloworld-js/index.html
parent41b068b6d48f9d82babd1cfce3520ad0b28be861 (diff)
Added first react sample project
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>