mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 08:30:02 +03:00
updated react version in the counter to React 0.14
This commit is contained in:
parent
eeee2954bf
commit
1568cb0e1d
|
@ -27,7 +27,7 @@ export default class App extends Component {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Provider store={store}>
|
<Provider store={store}>
|
||||||
{() => <CounterApp />}
|
<CounterApp />
|
||||||
</Provider>
|
</Provider>
|
||||||
<DebugPanel top right bottom>
|
<DebugPanel top right bottom>
|
||||||
<DevTools store={store}
|
<DevTools store={store}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import ReactDOM from 'react-dom';
|
||||||
import App from './containers/App';
|
import App from './containers/App';
|
||||||
|
|
||||||
React.render(
|
ReactDOM.render(
|
||||||
<App />,
|
<App />,
|
||||||
document.getElementById('root')
|
document.getElementById('root')
|
||||||
);
|
);
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/gaearon/redux-devtools#readme",
|
"homepage": "https://github.com/gaearon/redux-devtools#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react": "^0.13.3",
|
"react": "^0.14.0",
|
||||||
"react-redux": "^3.0.0",
|
"react-redux": "^3.0.0",
|
||||||
"redux": "^3.0.0",
|
"redux": "^3.0.0",
|
||||||
"redux-thunk": "^1.0.0"
|
"redux-thunk": "^1.0.0"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import React, { PropTypes, findDOMNode, Component } from 'react';
|
import React, { PropTypes, Component } from 'react';
|
||||||
|
import { findDOMNode } from 'react-dom';
|
||||||
import LogMonitorEntry from './LogMonitorEntry';
|
import LogMonitorEntry from './LogMonitorEntry';
|
||||||
import LogMonitorButton from './LogMonitorButton';
|
import LogMonitorButton from './LogMonitorButton';
|
||||||
import * as themes from './themes';
|
import * as themes from './themes';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user