Created
July 17, 2020 19:20
-
-
Save DZuz14/866c6b2f1da8de4574b80dac164baa24 to your computer and use it in GitHub Desktop.
Prevent JSX alignment errors
This file contains hidden or 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
return ( | |
<Accordion> | |
<div> | |
<Accordion.Collapsed> | |
…content here | |
</Accordion.Collapsed> | |
<Accordion.Expanded> | |
…content here | |
</Accordion.Expanded> | |
</div> | |
</Accordion> | |
) | |
// or use a JSX fragment | |
return ( | |
<Accordion> | |
<> | |
<Accordion.Collapsed> | |
…content here | |
</Accordion.Collapsed> | |
<Accordion.Expanded> | |
…content here | |
</Accordion.Expanded> | |
</> | |
</Accordion> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment