Skip to content

Instantly share code, notes, and snippets.

@nayunhwan
Created December 27, 2016 16:57
Show Gist options
  • Save nayunhwan/6526f2641026577cc3414dcc8e9b547a to your computer and use it in GitHub Desktop.
Save nayunhwan/6526f2641026577cc3414dcc8e9b547a to your computer and use it in GitHub Desktop.
Rendering "Hello, World!" in React
// This is index.js written by JSX
const element = <h1>Hello, world</h1>;
ReactDOM.render(
element,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment