Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created July 17, 2020 19:37
Show Gist options
  • Save DZuz14/5ca597b2710ac108e9025b3d3c35d967 to your computer and use it in GitHub Desktop.
Save DZuz14/5ca597b2710ac108e9025b3d3c35d967 to your computer and use it in GitHub Desktop.
Map through items 2
<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