Skip to content

Instantly share code, notes, and snippets.

@zprima
Created June 9, 2019 07:22
Show Gist options
  • Save zprima/375d2d62f6a3160bf030e2a8f695383d to your computer and use it in GitHub Desktop.
Save zprima/375d2d62f6a3160bf030e2a8f695383d to your computer and use it in GitHub Desktop.
medium_p9_c6
import React from 'react';
import ReactDOM from 'react-dom';
const App = () => (
<div className="app">
<h1>Hi from MyApp</h1>
</div>
);
ReactDOM.render(<App />, document.getElementById('app'));
module.hot.accept();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment