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 3eebd5c commit 1830db3Copy full SHA for 1830db3
src/Root.js
@@ -1,4 +1,4 @@
1
-import React, { PropTypes } from 'react';
+import { PropTypes } from 'react';
2
import createDispatcher from './createDispatcher';
3
4
export default class ReduxRoot {
@@ -15,13 +15,7 @@ export default class ReduxRoot {
15
}
16
17
getChildContext() {
18
- const { observeStores, wrapActionCreator } = this.dispatcher
19
- return {
20
- redux: {
21
- observeStores,
22
- wrapActionCreator
23
- }
24
- };
+ return { redux: this.dispatcher };
25
26
27
render() {
0 commit comments