[Docs] remove unnecessary dot. (#52387)

There's unneeded dot in a sentance
This commit is contained in:
Paul Ostrouskiy 2023-07-07 15:50:25 +03:00 committed by GitHub
parent d5f355adea
commit b0e4d8e447
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -171,7 +171,7 @@ function Page() {
export default Page
```
The URL will get updated to `/?counter=10`. and the page won't get replaced, only the state of the route is changed.
The URL will get updated to `/?counter=10` and the page won't get replaced, only the state of the route is changed.
You can also watch for URL changes via [`componentDidUpdate`](https://react.dev/reference/react/Component#componentdidupdate) as shown below: