Skip to content

Commit 98b6626

Browse files
authoredDec 21, 2020
Replace uppercase char with lowercase one (#1671)
1 parent 48773fd commit 98b6626

File tree

1 file changed

+2
-2
lines changed
  • website/versioned_docs/version-7.2/api

1 file changed

+2
-2
lines changed
 

‎website/versioned_docs/version-7.2/api/hooks.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ const selectNumOfDoneTodos = createSelector(
125125
)
126126

127127
export const DoneTodosCounter = () => {
128-
const NumOfDoneTodos = useSelector(selectNumOfDoneTodos)
129-
return <div>{NumOfDoneTodos}</div>
128+
const numOfDoneTodos = useSelector(selectNumOfDoneTodos)
129+
return <div>{numOfDoneTodos}</div>
130130
}
131131

132132
export const App = () => {

0 commit comments

Comments
 (0)
Please sign in to comment.