Created
November 18, 2024 17:58
-
-
Save nedgrady/9399811fd219c34778f8d88ff4975c13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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