Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import React, { useMemo } from 'react';
- function ContactList({ title, contacts }) {
- const listComponent = useMemo(() => {
- return <List title={title} data={contacts} />;
- }, [contacts]);
- // ^^^^^^^^ `props.contacts` dependency
- return listComponent;
- }
Advertisement
Add Comment
Please, Sign In to add comment