Skip to content
This repository has been archived by the owner on Aug 21, 2020. It is now read-only.

Commit

Permalink
Upgrade react to v0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
zillding committed Oct 9, 2015
1 parent 82cb8b7 commit 757f2ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"webpack-hot-middleware": "^2.0.0"
},
"dependencies": {
"react": "^0.13.0"
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import { render } from 'react-dom';
import { App } from './App';

React.render(<App />, document.getElementById('root'));
render(<App />, document.getElementById('root'));

0 comments on commit 757f2ef

Please sign in to comment.