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 48773fd commit 98b6626Copy full SHA for 98b6626
website/versioned_docs/version-7.2/api/hooks.md
@@ -125,8 +125,8 @@ const selectNumOfDoneTodos = createSelector(
125
)
126
127
export const DoneTodosCounter = () => {
128
- const NumOfDoneTodos = useSelector(selectNumOfDoneTodos)
129
- return <div>{NumOfDoneTodos}</div>
+ const numOfDoneTodos = useSelector(selectNumOfDoneTodos)
+ return <div>{numOfDoneTodos}</div>
130
}
131
132
export const App = () => {
0 commit comments