Skip to content

Instantly share code, notes, and snippets.

@dceddia
Created November 17, 2017 04:22
Show Gist options
  • Save dceddia/e6e857959b52a7beffa5655ae40cb258 to your computer and use it in GitHub Desktop.
Save dceddia/e6e857959b52a7beffa5655ae40cb258 to your computer and use it in GitHub Desktop.
import React from 'react';
import { render } from 'react-dom';
import Counter from './Counter';
const App = () => (
<div>
<Counter />
</div>
);
render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment