mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +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 (
|
||||
<div>
|
||||
<Provider store={store}>
|
||||
{() => <CounterApp />}
|
||||
<CounterApp />
|
||||
</Provider>
|
||||
<DebugPanel top right bottom>
|
||||
<DevTools store={store}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import App from './containers/App';
|
||||
|
||||
React.render(
|
||||
ReactDOM.render(
|
||||
<App />,
|
||||
document.getElementById('root')
|
||||
);
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/gaearon/redux-devtools#readme",
|
||||
"dependencies": {
|
||||
"react": "^0.13.3",
|
||||
"react": "^0.14.0",
|
||||
"react-redux": "^3.0.0",
|
||||
"redux": "^3.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 LogMonitorButton from './LogMonitorButton';
|
||||
import * as themes from './themes';
|
||||
|
|
Loading…
Reference in New Issue
Block a user