Guest User

Untitled

a guest
Feb 17th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import * as React from "react"
  2. import { render } from "react-dom"
  3. import App from "./App"
  4.  
  5. const renderApp = () => render(<App />, document.getElementById("root"))
  6.  
  7. renderApp()
  8.  
  9. module.hot.accept("./App", renderApp)
Add Comment
Please, Sign In to add comment