diff --git a/content/blog/2019-01-30-react-v16.8.0.md b/content/blog/2019-01-30-react-v16.8.0.md index 94359c26..b431abbd 100644 --- a/content/blog/2019-01-30-react-v16.8.0.md +++ b/content/blog/2019-01-30-react-v16.8.0.md @@ -42,7 +42,9 @@ React Hooks are now fully supported by React DevTools. They are also supported i ## What's Next -React Hooks don't cover *all* use cases for classes yet but they're [very close](/docs/hooks-faq.html#do-hooks-cover-all-use-cases-for-classes). Currently, only `getSnapshotBeforeUpdate()` and `componentDidCatch()` methods don't have equivalent Hooks APIs, and these lifecycles are relatively uncommon. If you want, you should be able to use Hooks in most of the new code you're writing. +We described our plan for the next months in the recently published [React Roadmap](/blog/2018/11/27/react-16-roadmap.html). + +Note that React Hooks don't cover *all* use cases for classes yet but they're [very close](/docs/hooks-faq.html#do-hooks-cover-all-use-cases-for-classes). Currently, only `getSnapshotBeforeUpdate()` and `componentDidCatch()` methods don't have equivalent Hooks APIs, and these lifecycles are relatively uncommon. If you want, you should be able to use Hooks in most of the new code you're writing. Even while Hooks were in alpha, we saw many [interesting examples](https://medium.com/@drcmda/hooks-in-react-spring-a-tutorial-c6c436ad7ee4) of custom Hooks for animations, forms, subscriptions, integrating with other libraries, and so on. Our goal is to empower the React community to write components and Hooks that deliver great user and developer experience. We can't wait to see what you'll create next!