Skip to content

Instantly share code, notes, and snippets.

@jjhiggz
Created August 21, 2024 18:34
Show Gist options
  • Save jjhiggz/ad4e589d3f939bd2103208d564c02b55 to your computer and use it in GitHub Desktop.
Save jjhiggz/ad4e589d3f939bd2103208d564c02b55 to your computer and use it in GitHub Desktop.
Dumb Accordion Component
export const Accordion = (
{
children,
show
} : {
children: ReactNode,
show: boolean
}
) => {
return show ?
<div className="accordion closed"></div>
: <div className="accordion open">
{children}
</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment