Created
          January 5, 2018 02:58 
        
      - 
      
- 
        Save chrisabrams/293a08cfb98b6d8f0bb5aff4464f5874 to your computer and use it in GitHub Desktop. 
Revisions
- 
        chrisabrams created this gist Jan 5, 2018 .There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ // start.js import React from 'react' import ReactDOM from 'react-dom' import { hot } from 'react-hot-loader' const App = () => <div>Hello World!! 4</div> const HotApp = hot(module)(App) ReactDOM.render(<HotApp />, document.getElementById('root'))