Skip to content

Instantly share code, notes, and snippets.

@yeti-detective
Last active March 4, 2017 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yeti-detective/8d9b85354db58bdcb95b08650fdbf996 to your computer and use it in GitHub Desktop.
Save yeti-detective/8d9b85354db58bdcb95b08650fdbf996 to your computer and use it in GitHub Desktop.
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