Added info about deprecated React method in curriculum (#19930)

* Update use-the-lifecycle-method-componentwillmount.english.md

* Added correction to deprecation timeline and updated link
This commit is contained in:
The Coding Aviator
2018-10-28 08:19:49 +05:30
committed by Christopher McCormack
parent ed7b0de6e5
commit ebf96cb0b2

View File

@ -16,6 +16,8 @@ React components have several special methods that provide opportunities to perf
<code>componentDidUpdate()</code> <code>componentDidUpdate()</code>
<code>componentWillUnmount()</code> <code>componentWillUnmount()</code>
The next several lessons will cover some of the basic use cases for these lifecycle methods. The next several lessons will cover some of the basic use cases for these lifecycle methods.
##### Note: The ``` componentWillMount ``` Lifecycle method will be deprecated in a future version of 16.X and removed in version 17. [(Source)](https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html)
</section> </section>
## Instructions ## Instructions