Skip to content

Instantly share code, notes, and snippets.

@MariusBongarts
Created February 1, 2023 07:30
Show Gist options
  • Save MariusBongarts/39db98a5fac07e5361334291de9e7040 to your computer and use it in GitHub Desktop.
Save MariusBongarts/39db98a5fac07e5361334291de9e7040 to your computer and use it in GitHub Desktop.
export const History: React.FC<HistoryProps> = ({ items }) => {
return (
<StyledList>
{items.map((item) => (
<HistoryItem key={item.id} item={item} />
))}
</StyledList>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment