diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-06-20 20:00:35 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-06-20 20:00:35 +0530 |
| commit | 59c2d3502259b338c36991ced8dc25d8dc9713b1 (patch) | |
| tree | 7d1d87b54f2da5a269bb55d99d01f5d7b0dca1f0 /react/01-helloworld-js/index.html | |
| parent | 41b068b6d48f9d82babd1cfce3520ad0b28be861 (diff) | |
Added first react sample project
Diffstat (limited to 'react/01-helloworld-js/index.html')
| -rw-r--r-- | react/01-helloworld-js/index.html | 17 |
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> |
