Created
May 18, 2019 21:24
-
-
Save henriqueweiand/eba9f078649512ea8ea54529ab4c3d70 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
import React from 'react'; | |
import { render } from 'react-dom'; | |
class App extends React.Component { | |
render() { | |
return ( | |
<h1> | |
Hello React!! | |
</h1> | |
); | |
} | |
} | |
render(<App />, document.getElementById('app')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment