Last active
March 4, 2017 00:12
-
-
Save yeti-detective/8d9b85354db58bdcb95b08650fdbf996 to your computer and use it in GitHub Desktop.
This file contains 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'; | |
import MyApp from './MyApp'; | |
class App extends React.Component { | |
render() { | |
return ( | |
<MyApp /> | |
); | |
} | |
} | |
render(<App/>, document.getElementById('app')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment