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 7629b9e commit 42a3114Copy full SHA for 42a3114
src/routes/Counter/containers/CounterContainer.js
@@ -12,7 +12,7 @@ import Counter from 'components/Counter'
12
Keys will be passed as props to presentational components. Here we are
13
implementing our wrapper around increment; the component doesn't care */
14
15
-const mapDispatchtoProps = {
+const mapDispatchToProps = {
16
increment: () => increment(1),
17
doubleAsync
18
}
@@ -35,4 +35,4 @@ const mapStateToProps = (state) => ({
35
Selectors are composable. They can be used as input to other selectors.
36
https://github.com/reactjs/reselect */
37
38
-export default connect(mapStateToProps, mapDispatchtoProps)(Counter)
+export default connect(mapStateToProps, mapDispatchToProps)(Counter)
0 commit comments