-
-
Save njayman/a8ffebcc21228faa785e853b8c7be7ca to your computer and use it in GitHub Desktop.
Revisions
-
jimfb revised this gist
Feb 4, 2016 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,4 +10,8 @@ class MyLibraryComponent { } } // 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. -
jimfb revised this gist
Feb 4, 2016 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,4 +8,6 @@ class MyLibraryComponent { render() { return <div><span><whatever><MyWrapper ref=...>{this.props.statelessComponentThatIWantToReference}</MyWrapper></whatever></span></div>; } } // ReactDOM.findDOMNode(mywrapperref) returns a reference to the stateless component. -
jimfb created this gist
Feb 4, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ 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>; } }