Skip to content

Instantly share code, notes, and snippets.

@bautistaaa
Created May 4, 2020 16:23
Show Gist options
  • Save bautistaaa/6fddc4d808acde2619ce37af38d06417 to your computer and use it in GitHub Desktop.
Save bautistaaa/6fddc4d808acde2619ce37af38d06417 to your computer and use it in GitHub Desktop.
<Sidebar.Wrapper>
<Sidebar.List onMouseLeave={() => setSelectedMenus([])}>
{links.map((link) => {
return (
<SidebarItem
link={link}
handleMenuSelection={handleMenuSelection}
key={link.label}
selectedMenus={selectedMenus}
/>
);
})}
</Sidebar.List>
</Sidebar.Wrapper>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment