Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Remove superfluous word 'like' (#5813)
Browse files Browse the repository at this point in the history
'Your Effect would look like similar to this' -> 'Your Effect would look similar to this'
  • Loading branch information
tristndev authored Mar 24, 2023
1 parent 9f89fff commit f68a91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/learn/synchronizing-with-effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ Most of the Effects you'll write will fit into one of the common patterns below.
### Controlling non-React widgets {/*controlling-non-react-widgets*/}
Sometimes you need to add UI widgets that aren't written to React. For example, let's say you're adding a map component to your page. It has a `setZoomLevel()` method, and you'd like to keep the zoom level in sync with a `zoomLevel` state variable in your React code. Your Effect would look like similar to this:
Sometimes you need to add UI widgets that aren't written to React. For example, let's say you're adding a map component to your page. It has a `setZoomLevel()` method, and you'd like to keep the zoom level in sync with a `zoomLevel` state variable in your React code. Your Effect would look similar to this:
```js
useEffect(() => {
Expand Down

0 comments on commit f68a91b

Please sign in to comment.