Skip to content

Commit 7a709e1

Browse files
committed
Merge pull request happypoulp#91 from Paolinni/master
Fixed typo
2 parents 9e66cd9 + 7c3908e commit 7a709e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

11_src/src/home.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export default ConnectedHome
125125
// the current time), this state is by no mean present inside the component. Our component only receives props with
126126
// needed data.
127127
// What we have here is called a stateless component. You should always try to have more stateless components (presented
128-
// above as dumb components) in your applications that stateful ones because they are much more reusable.
128+
// above as dumb components) in your applications than stateful ones because they are much more reusable.
129129
// As suggested in "onTimeButtonClick" handler, we could even go further by passing our click callback as a prop
130130
// via "connect" second parameter "mapDispatchToProps". Doing so, we would extract our button behavior outside of
131131
// our component, making it even more reusable by allowing for a different click behavior.

0 commit comments

Comments
 (0)