We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6619849 commit ab3a99eCopy full SHA for ab3a99e
package.json
@@ -39,7 +39,8 @@
39
"postcss-modules-extract-imports": "^1.0.0",
40
"postcss-modules-local-by-default": "^1.0.0",
41
"postcss-modules-scope": "^1.0.0",
42
- "react": "^0.13.3",
+ "react": "^0.14.1",
43
+ "react-dom": "^0.14.1",
44
"watchify": "^3.2.2"
45
},
46
"browserify": {
src/index.js
@@ -1,9 +1,10 @@
1
import React from 'react';
2
+import ReactDOM from 'react-dom';
3
4
import App from './components/App';
5
6
if (typeof document !== 'undefined') {
- React.render(<App />, document.getElementById('outlet'));
7
+ ReactDOM.render(<App />, document.getElementById('outlet'));
8
}
9
10
export default App;
0 commit comments