Last active
April 15, 2016 23:41
-
-
Save Mohammed-El-Nabulsi/2441d16ad372cf2d52e03c6e7d334a16 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 { render } from 'react-dom'; | |
render( | |
<div> | |
<button> | |
Hello World! | |
</button> | |
</div> | |
, | |
document.getElementById('app'), | |
() => document.title = 'Hello World' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment