Skip to content

Commit 7c3908e

Browse files
Paolinni VelazquezPaolinni Velazquez
Paolinni Velazquez
authored and
Paolinni Velazquez
committed
Fixed typo
1 parent 9e66cd9 commit 7c3908e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

11_src/src/home.jsx

Lines changed: 1 addition & 1 deletion
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)