Skip to content
This repository was archived by the owner on May 8, 2018. It is now read-only.

Commit f995b40

Browse files
committed
feat(src/client): add basic client entry
feat(src/client): add basic client entry
1 parent 8927bc9 commit f995b40

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/client/index.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Application
2+
import React from 'react'
3+
import ReactDOM, {render} from 'react-dom'
4+
import Root from 'common'
5+
6+
render(<Root />, document.getElementById('app'))
7+
8+
if (module.hot) {
9+
module.hot.accept()
10+
}

0 commit comments

Comments
 (0)