Created
July 17, 2020 19:37
-
-
Save DZuz14/5ca597b2710ac108e9025b3d3c35d967 to your computer and use it in GitHub Desktop.
Map through items 2
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
<Accordion> | |
{items.map(({ summary, detail }) => ( | |
<Accordion.Item key={summary}> | |
<Accordion.Collapsed id={summary}> | |
{summary} | |
</Accordion.Collapsed> | |
<Accordion.Expanded>{detail}</Accordion.Expanded> | |
</Accordion.Item> | |
))} | |
</Accordion> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment