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 5af2246 commit 7304fdeCopy full SHA for 7304fde
README.md
@@ -302,6 +302,7 @@
302
|286| [Is it possible to use react without JSX?](#is-it-possible-to-use-react-without-jsx)|
303
|287| [What is diffing algorithm?](#what-is-diffing-algorithm)|
304
|288| [What are the rules covered by diffing algorithm?](#what-are-the-rules-covered-by-diffing-algorithm)|
305
+|289| [When do you need to use refs?](#when-do-you-need-to-use-refs)|
306
307
## Core React
308
@@ -4867,5 +4868,10 @@
4867
4868
<li key="2016">Villanova</li>
4869
</ul>
4870
```
4871
+289. ### When do you need to use refs?
4872
+ There are few use cases to go for refs
4873
+ 1. Managing focus, text selection, or media playback.
4874
+ 2. Triggering imperative animations.
4875
+ 3. Integrating with third-party DOM libraries.
4876
4877
0 commit comments