Skip to content

Instantly share code, notes, and snippets.

@peteraiello
Created June 16, 2021 15:31
Show Gist options
  • Save peteraiello/fcaf4349c83db2d2699efb03d5c12b4e to your computer and use it in GitHub Desktop.
Save peteraiello/fcaf4349c83db2d2699efb03d5c12b4e to your computer and use it in GitHub Desktop.
Custom React Accordion - Component Structure
<AccordionWrapper>
{data.map((item, index) => (
<AccordionItem key={index} index={index} title={item.title} description={item.description} />
))}
</AccordionWrapper>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment