m-tabs
m-tabs copied to clipboard
Issue with React UNSAFE lifecycle method depreciation
React has deprecated the componentWillReceiveProps lifecycle method.
Starting with React 16.9, a WARNING is displayed in development mode. With React 17.x, the method will no longer works.
It needs to be updated to UNSAFE_componentWillReceiveProps.
Thank you.