Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jasonbahl/2ec2037f8f5e045a18e5e0ab90553ccb to your computer and use it in GitHub Desktop.
Save jasonbahl/2ec2037f8f5e045a18e5e0ab90553ccb to your computer and use it in GitHub Desktop.
Basic React Usage - 1: Simple Component
<div id="app"></div>
class App extends React.Component {
render() {
return(
<h1>Hello, World</h1>
)
}
}
ReactDOM.render(<App />, document.getElementById('app'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react-dom.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment