From dbcc9c249a46da255d7301f3760a7704f58fd48a Mon Sep 17 00:00:00 2001 From: Mikhail Vasin <12434833+mvasin@users.noreply.github.com> Date: Wed, 2 Jan 2019 22:22:29 +0300 Subject: [PATCH] Update version expected to include hooks (#1511) * Update version expected to include hooks 16.7.0 does not include hooks, I suppose 16.8 could include them. * Remove specific version --- content/docs/hooks-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-intro.md b/content/docs/hooks-intro.md index e27188327..4abf79726 100644 --- a/content/docs/hooks-intro.md +++ b/content/docs/hooks-intro.md @@ -43,7 +43,7 @@ Before we continue, note that Hooks are: * **Completely opt-in.** You can try Hooks in a few components without rewriting any existing code. But you don't have to learn or use Hooks right now if you don't want to. * **100% backwards-compatible.** Hooks don't contain any breaking changes. -* **Available now.** Hooks are currently in an alpha release, and we hope to include them in React 16.7 after receiving community feedback. +* **Available now.** Hooks are currently in an alpha release, and we hope to include them in React 16.x after receiving community feedback. **There are no plans to remove classes from React.** You can read more about the gradual adoption strategy for Hooks in the [bottom section](#gradual-adoption-strategy) of this page.