From ebf96cb0b225692ebc4332148bdd634adc52d581 Mon Sep 17 00:00:00 2001
From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com>
Date: Sun, 28 Oct 2018 08:19:49 +0530
Subject: [PATCH] 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
---
.../use-the-lifecycle-method-componentwillmount.english.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/curriculum/challenges/english/03-front-end-libraries/react/use-the-lifecycle-method-componentwillmount.english.md b/curriculum/challenges/english/03-front-end-libraries/react/use-the-lifecycle-method-componentwillmount.english.md
index 27860869cb..147c34f46d 100644
--- a/curriculum/challenges/english/03-front-end-libraries/react/use-the-lifecycle-method-componentwillmount.english.md
+++ b/curriculum/challenges/english/03-front-end-libraries/react/use-the-lifecycle-method-componentwillmount.english.md
@@ -16,6 +16,8 @@ React components have several special methods that provide opportunities to perf
componentDidUpdate()
componentWillUnmount()
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)
## Instructions