From e5619538274b109b0c100e42b0aa6351fea6a1ab Mon Sep 17 00:00:00 2001 From: Tiago Salema Date: Wed, 3 Jul 2019 12:56:15 +0100 Subject: [PATCH] Removed deprecated lifecycle methods (#35895) Removed `componentWillReceiveProps` and `componentWillUpdate` from the list of lifecycle methods since they are now deprecated. --- .../use-the-lifecycle-method-componentwillmount.english.md | 2 -- 1 file changed, 2 deletions(-) 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 147c34f46d..78b090d829 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 @@ -10,9 +10,7 @@ isRequired: false React components have several special methods that provide opportunities to perform actions at specific points in the lifecycle of a component. These are called lifecycle methods, or lifecycle hooks, and allow you to catch components at certain points in time. This can be before they are rendered, before they update, before they receive props, before they unmount, and so on. Here is a list of some of the main lifecycle methods: componentWillMount() componentDidMount() -componentWillReceiveProps() shouldComponentUpdate() -componentWillUpdate() componentDidUpdate() componentWillUnmount() The next several lessons will cover some of the basic use cases for these lifecycle methods.