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 2d22c65 commit 48773fdCopy full SHA for 48773fd
website/versioned_docs/version-7.2/api/hooks.md
@@ -153,11 +153,11 @@ const selectNumOfTodosWithIsDoneValue = createSelector(
153
)
154
155
export const TodoCounterForIsDoneValue = ({ isDone }) => {
156
- const NumOfTodosWithIsDoneValue = useSelector(state =>
+ const numOfTodosWithIsDoneValue = useSelector(state =>
157
selectNumOfTodosWithIsDoneValue(state, isDone)
158
159
160
- return <div>{NumOfTodosWithIsDoneValue}</div>
+ return <div>{numOfTodosWithIsDoneValue}</div>
161
}
162
163
export const App = () => {
0 commit comments