Upgrade React to 15.4

This commit is contained in:
lukasmartinelli
2016-11-23 16:04:00 +01:00
parent 824821f2c8
commit 5f9406d562
3 changed files with 12 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
import React from 'react';
import { render } from 'react-dom';
import ReactDOM from 'react-dom';
import App from './app.jsx';
render(<App/>, document.querySelector("#app"));
ReactDOM.render(<App/>, document.querySelector("#app"));