Created
October 7, 2017 22:26
-
-
Save iCodeForBananas/fa3bd5acac6894191e31cc49a1bbe150 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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