-
-
Save njayman/a8ffebcc21228faa785e853b8c7be7ca 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