React is deprecating 3 of their lifecycle methods in the upcoming version 17 release. These are:
componentWillMount
componentWillreceiveProps
componentWillUpdate
For now the code will continue to work with deprecation warnings and possible bugs. We need to identify where these are used and update our code with the recommended alternatives. Guidance found here: https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html
React is deprecating 3 of their lifecycle methods in the upcoming version 17 release. These are:
For now the code will continue to work with deprecation warnings and possible bugs. We need to identify where these are used and update our code with the recommended alternatives. Guidance found here: https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html