Last active
July 26, 2018 13:32
-
-
Save nairihar/e19453b81cd1e08736f3a7e2f33a1b72 to your computer and use it in GitHub Desktop.
Setup React App - Organizing React Application Part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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