Skip to content

Instantly share code, notes, and snippets.

@nirsky
Created December 25, 2018 12:41
Show Gist options
  • Save nirsky/45e47e589378d6a492e6a912609d3c73 to your computer and use it in GitHub Desktop.
Save nirsky/45e47e589378d6a492e6a912609d3c73 to your computer and use it in GitHub Desktop.
//Class
shouldComponentUpdate(nextProps) {
return nextProps.count !== this.props.count
}
//memo
import React, { memo } from 'react';
const MyComponent = memo(
_MyComponent,
(prevProps, nextProps) => nextProps.count !== prevProps.count
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment