You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# React Interview Questions & Answers
2
2
3
-
> Click :star:if you like the project. Pull Request are highly appreciated.
3
+
> Click :star:if you like the project. Pull Request are highly appreciated. Follow me [@SudheerJonna](https://twitter.com/SudheerJonna) for technical updates.
4
4
5
5
### Table of Contents
6
6
@@ -318,6 +318,7 @@
318
318
|302|[Do I need to rewrite all my class components with hooks?](#do-i-need-to-rewrite-all-my-class-components-with-hooks)|
319
319
|303|[How to fetch data with React Hooks?](#how-to-fetch-data-with-react-hooks)|
320
320
|304|[Is Hooks cover all use cases for classes?](#is-hooks-cover-all-use-cases-for-classes)|
321
+
|305|[What is the stable release for hooks support?](#what-is-the-stable-release-for-hooks-support)|
321
322
322
323
## Core React
323
324
@@ -5066,4 +5067,10 @@
5066
5067
Remember we provided an empty array as second argument to the effect hook to avoid activating it on component updates but only for the mounting of the component. i.e, It fetches only for component mount.
5067
5068
304. ### Is Hooks cover all use cases for classes?
5068
5069
Hooks doesn't cover all use cases of classes but there is a plan to add them soon. Currently there are no Hook equivalents to the uncommon **getSnapshotBeforeUpdate** and **componentDidCatch** lifecycles yet.
5070
+
305. ### What is the stable release for hooks support?
5071
+
React includes a stable implementation of React Hooks in 16.8 release for below packages
0 commit comments