Skip to content

Instantly share code, notes, and snippets.

@nsantos16
Created July 24, 2020 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nsantos16/02cee7facd1f13004c38c4def1deac46 to your computer and use it in GitHub Desktop.
Save nsantos16/02cee7facd1f13004c38c4def1deac46 to your computer and use it in GitHub Desktop.
import React from 'react';
import usePageTitle from 'hooks/usePageTitle';
const ListPage = ({ items = [] }) => {
usePageTitle('List of items');
return (
<div className="list-component">
<ListTitle title="List component" />
<div className="list-component-items">
{items.map((item, index) => (
<ListItem item={item} key={index} />
))}
</div>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment