Skip to content

Commit

Permalink
chore: rename variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
rozhkovs authored Jan 21, 2024
1 parent 1c3299f commit 79589e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ At first render, the result is true, then false.
**Example**
```typescript
// first render
const isMouting = useIsFirstRender(); // The return is true.
const isFirst = useIsFirstRender(); // The return is true.

// after
const isMouting = useIsFirstRender(); // The return is false.
const isFirst = useIsFirstRender(); // The return is false.
```
**Interface**
```typescript
Expand Down

0 comments on commit 79589e7

Please sign in to comment.