Last active
March 14, 2018 22:51
-
-
Save nahumzs/11dee11ca58d250a081e414f33725395 to your computer and use it in GitHub Desktop.
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
{ /* 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