Skip to content

Instantly share code, notes, and snippets.

@nairihar
Last active July 26, 2018 13:32
Show Gist options
  • Save nairihar/e19453b81cd1e08736f3a7e2f33a1b72 to your computer and use it in GitHub Desktop.
Save nairihar/e19453b81cd1e08736f3a7e2f33a1b72 to your computer and use it in GitHub Desktop.
Setup React App - Organizing React Application Part 1
import React from 'react';
import { render } from 'react-dom';
const App = () => <h1>Hello World</h1>;
render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment