summaryrefslogtreecommitdiff
path: root/react/01-helloworld-js/index.html
blob: 0cdbeaf910cabf967c1794adcd132f79b04ea1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>