helloworld.js 106 B

12345
  1. React.render(
  2. React.createElement("h1", null, "Hello, world!"),
  3. document.getElementById('example')
  4. );