Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created July 17, 2020 19:20
Show Gist options
  • Save DZuz14/866c6b2f1da8de4574b80dac164baa24 to your computer and use it in GitHub Desktop.
Save DZuz14/866c6b2f1da8de4574b80dac164baa24 to your computer and use it in GitHub Desktop.
Prevent JSX alignment errors
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