React.memo wraps a component so it skips re-rendering when its props are shallow-equal to the previous render. By default a child re-renders whenever its parent does; memo short-circuits that when the props didn't actually change.
jsx
= .( () {
;
});
