I have a large class component that has:
shouldComponentUpdate(nextProps) {
if(this.props.activeKeysSync != nextProps.activeKeysSync) {
return false;
}
return true;
}
I have turned component into functional but what I need to do to save this logic?