Skip to content

Commit 42a3114

Browse files
author
David Zukowski
committed
fix(CounterContainer): typo fix, mapDispatchtoProps -> mapDispatchToProps
1 parent 7629b9e commit 42a3114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/Counter/containers/CounterContainer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Counter from 'components/Counter'
1212
Keys will be passed as props to presentational components. Here we are
1313
implementing our wrapper around increment; the component doesn't care */
1414

15-
const mapDispatchtoProps = {
15+
const mapDispatchToProps = {
1616
increment: () => increment(1),
1717
doubleAsync
1818
}
@@ -35,4 +35,4 @@ const mapStateToProps = (state) => ({
3535
Selectors are composable. They can be used as input to other selectors.
3636
https://github.com/reactjs/reselect */
3737

38-
export default connect(mapStateToProps, mapDispatchtoProps)(Counter)
38+
export default connect(mapStateToProps, mapDispatchToProps)(Counter)

0 commit comments

Comments
 (0)