Last active
September 7, 2017 18:57
-
-
Save chrisui/347affb9d1e80034bc5d24d2df022359 to your computer and use it in GitHub Desktop.
Who is the OWNER of the <A /> instance here?
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
const A = () => <div />; | |
const B = ({children}) => children(); | |
const C = () => <B>{() => <A />}</B>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment