From 71ec859df29570e0429f4993cd2d2de5f11fe82f Mon Sep 17 00:00:00 2001 From: Jeremy Deutsch Date: Thu, 15 Aug 2019 15:23:48 -0700 Subject: [PATCH] Update hooks-faq.md with info for React Native (#1875) For the FAQ question "Which versions of React include Hooks?", the current version of React Native (which supports Hooks) is now listed, along with a link to the blog post for that release. --- content/docs/hooks-faq.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/docs/hooks-faq.md b/content/docs/hooks-faq.md index 3bec5617..851d136d 100644 --- a/content/docs/hooks-faq.md +++ b/content/docs/hooks-faq.md @@ -64,13 +64,14 @@ This page answers some of the frequently asked questions about [Hooks](/docs/hoo Starting with 16.8.0, React includes a stable implementation of React Hooks for: * React DOM +* React Native * React DOM Server * React Test Renderer * React Shallow Renderer 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 0.59 and above support Hooks. +[React Native 0.59](https://facebook.github.io/react-native/blog/2019/03/12/releasing-react-native-059) and above support Hooks. ### Do I need to rewrite all my class components? {#do-i-need-to-rewrite-all-my-class-components}