react-simple-maps
react-simple-maps copied to clipboard
Replace componentWillReceiveProps with componentDidUpdate
componentWillReceiveProps will be renamed UNSAFE_componentWillReceiveProps in react 17 and reults in console errors when run in React strict mode.
This PR replaces all use of componentWillReceiveProps with componentDidUpdate. While this should be sufficient, more optimizations might be found switching to some memoized functions.