Skip to content

Commit 234cb7d

Browse files
committed
Add contacts details
1 parent 7ebd826 commit 234cb7d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# React Interview Questions & Answers
22

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.
44
55
### Table of Contents
66

@@ -318,6 +318,7 @@
318318
|302| [Do I need to rewrite all my class components with hooks?](#do-i-need-to-rewrite-all-my-class-components-with-hooks)|
319319
|303| [How to fetch data with React Hooks?](#how-to-fetch-data-with-react-hooks)|
320320
|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)|
321322

322323
## Core React
323324

@@ -5066,4 +5067,10 @@
50665067
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.
50675068
304. ### Is Hooks cover all use cases for classes?
50685069
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
5072+
1. React DOM
5073+
2. React DOM Server
5074+
3. React Test Renderer
5075+
4. React Shallow Renderer
50695076

0 commit comments

Comments
 (0)