File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ export default ConnectedHome
125
125
// the current time), this state is by no mean present inside the component. Our component only receives props with
126
126
// needed data.
127
127
// 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.
129
129
// As suggested in "onTimeButtonClick" handler, we could even go further by passing our click callback as a prop
130
130
// via "connect" second parameter "mapDispatchToProps". Doing so, we would extract our button behavior outside of
131
131
// our component, making it even more reusable by allowing for a different click behavior.
You can’t perform that action at this time.
0 commit comments