Skip to content

Instantly share code, notes, and snippets.

@iCodeForBananas
Created October 7, 2017 22:26
Show Gist options
  • Select an option

  • Save iCodeForBananas/fa3bd5acac6894191e31cc49a1bbe150 to your computer and use it in GitHub Desktop.

Select an option

Save iCodeForBananas/fa3bd5acac6894191e31cc49a1bbe150 to your computer and use it in GitHub Desktop.
// app.js
import React from 'react'
import ReactDom from 'react-dom'
function App () {
return (
<div>
<h1>My App's Top Most Component</h1>
</div>
);
};
ReactDOM.render(<App>, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment