Listing 4-36: Using React.memo
Hi, . This component returns the same thing when given the same props.
import React from 'react';
function ReactMemoExample(props){
return (<p>Hi, {props.firstName}. This component returns the same thing when given the same props.</p>);
}
export default React.memo(ReactMemoExample);
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.