-
-
Save CanRau/9b624c6a7de20c23c1ea7b7dfd4eaf92 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
class MyWrapper { | |
return React.Children.only(this.props.children); | |
} | |
class MyLibraryComponent { | |
render() { | |
return <div><span><whatever><MyWrapper ref=...>{this.props.statelessComponentThatIWantToReference}</MyWrapper></whatever></span></div>; | |
} | |
} | |
// ReactDOM.findDOMNode(mywrapperref) effectively returns a reference to the stateless component. | |
// You can find the DOM node of the stateless component, etc. | |
// It no longer matters if your users are using stateless components or real components. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment