Files
hello-world/r/react.js
2018-08-22 01:37:32 -03:00

3 lines
131 B
JavaScript
Executable File

//simple react component that renders "Hello World" as an H1 tag into the body
React.render(<h1>Hello World</h1>, document.body);