Skip to content

Instantly share code, notes, and snippets.

@ooade
Last active July 21, 2016 19:39
Show Gist options
  • Save ooade/6c20219bc069b637580715aab356570b to your computer and use it in GitHub Desktop.
Save ooade/6c20219bc069b637580715aab356570b to your computer and use it in GitHub Desktop.
Higher Order Components
<head>
<title>My App</title>
</head>
<body>
<div class="app"></div> <!-- We use class here because we're not in the react environment, so don't mix things up -->
</body>
// Grab the react and react-dom pkg
import React from 'react';
import ReactDOM from 'react-dom';
// Write an App Component
const App = () => {
return (
<div> Hello World! </div>
);
};
ReactDOM.render(<App />, document.querySelector('.app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment