React - Obsolete lifecycle methods
The react is an established JS framework that is still evolving. After introduction of the hooks the main weight of the status updating shifted from class components to functional components.
Lifecycle has been simplified for the class components but they are still present for some UI libraries and legacy projects.
It may be worth understanding old methods to be able to migrate the components the the newer one, as with version 18.0 lots of them became marked as UNSAFE__ and will be removed from future versions of react
Old lifecycle methods
I know UNSAFE__ lifecycle methods and their previous purpoise of existance. That way I can understand code that needs to be adjusted to modern react codebase
I know UNSAFE__ lifecycle methods and their previous purpoise of existance. That way I can understand code that needs to be adjusted to modern react codebase