Skip to content

Instantly share code, notes, and snippets.

@wojciech-bilicki
Created August 1, 2017 15:36
Show Gist options
  • Save wojciech-bilicki/d30b540356c3d43ccefa35e88dc82007 to your computer and use it in GitHub Desktop.
Save wojciech-bilicki/d30b540356c3d43ccefa35e88dc82007 to your computer and use it in GitHub Desktop.
App.jsx #4
import React from 'react';
import ReactDOM from 'react-dom';
const App = () =>
<div>
<header>Super Hero Team!!!</header>
<div>Content</div>
</div>;
ReactDOM.render(React.createElement(App), document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment