jdxcode/npm-register

View on GitHub
client/index.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import { render } from 'react-dom'
import App from './App'

const renderApp = () => {
  render(
    <App />,
    document.getElementById('app')
  )
}

renderApp()

if (module.hot) {
  module.hot.accept('./App', renderApp)
}