Skip to content

Instantly share code, notes, and snippets.

@nedgrady
Created November 18, 2024 17:58
Show Gist options
  • Save nedgrady/9399811fd219c34778f8d88ff4975c13 to your computer and use it in GitHub Desktop.
Save nedgrady/9399811fd219c34778f8d88ff4975c13 to your computer and use it in GitHub Desktop.
return (
<ul>
{communicationsToDisplay
.filter((communication) => communication.status !== "draft")
.map((communication) => (
<li key={communication.id}>{communication.name}</li>
))}
</ul>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment