Skip to content

Instantly share code, notes, and snippets.

@reime005
Created September 8, 2019 08:27
Show Gist options
  • Save reime005/ce2364d4f1a881fd4abfdf4c8b20483d to your computer and use it in GitHub Desktop.
Save reime005/ce2364d4f1a881fd4abfdf4c8b20483d to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(<App />, document.getElementById('root'));
const App = () => (
<div>
<Home />
</div>
);
const Home = () => (
<div>
<p>There will be some buttons and text...</p>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment