Created
August 21, 2024 18:34
-
-
Save jjhiggz/ad4e589d3f939bd2103208d564c02b55 to your computer and use it in GitHub Desktop.
Dumb Accordion Component
This file contains 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
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