From 06dd4cbe97886a0428efbfa9814274751a1d4284 Mon Sep 17 00:00:00 2001 From: UmaR Aamer Date: Tue, 9 Jul 2019 20:33:15 +0500 Subject: [PATCH] React Native added support for hooks in 0.59 (#2121) * React Native added support for hooks in 0.59 React Native 0.59 and above already support React Hooks, this line is no longer necessary, causes confusion for some people that it is not working right now. We can also mention React Native version if needed. * update with react native mention of hooks support * Update content/docs/hooks-faq.md suggested changes Co-Authored-By: Alexey Pyltsyn --- content/docs/hooks-faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-faq.md b/content/docs/hooks-faq.md index d3683b076..ef3662b88 100644 --- a/content/docs/hooks-faq.md +++ b/content/docs/hooks-faq.md @@ -70,7 +70,7 @@ Starting with 16.8.0, React includes a stable implementation of React Hooks for: Note that **to enable Hooks, all React packages need to be 16.8.0 or higher**. Hooks won't work if you forget to update, for example, React DOM. -React Native will fully support Hooks in its next stable release. +React Native 0.59 and above support Hooks. ### Do I need to rewrite all my class components? {#do-i-need-to-rewrite-all-my-class-components}