Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class ContactList extends React.PureComponent {
  2. // ^^^^^^^^^^^^^ magic happens here
  3. render() {
  4. const { contacts } = this.props;
  5. return <List data={contacts} />;
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement