Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nahumzs/11dee11ca58d250a081e414f33725395 to your computer and use it in GitHub Desktop.
Save nahumzs/11dee11ca58d250a081e414f33725395 to your computer and use it in GitHub Desktop.
{ /* This structure will work */ }
<Tabs>
<Tab></Tab> { /* ← 😻this child will be correctly extended */ }
<Tabs>
{ /* Slight change in the structure will break the implementation: */ }
<Tabs>
<div> { /* ← 😵this will be the extend child */ }
<Tab></Tab> { /* ← 😩this will not receive the parent state */ }
</div>
<Tabs>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment