Skip to content

Instantly share code, notes, and snippets.

@cecigarcia
Last active February 22, 2018 11:57
Show Gist options
  • Save cecigarcia/a874fbabaf1bf12cbb78ad8777370f89 to your computer and use it in GitHub Desktop.
Save cecigarcia/a874fbabaf1bf12cbb78ad8777370f89 to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
class CustomComponent extends Component {
apiMethod() { /* ... */ }
};
const StyledCustomComponent = props => (
<CustomComponent {...props} style={{ padding: 10 }} />
);
const EnhancedCustomComponent = props => (
<StyledCustomComponent {...props} extraInfo={info} />
);
class ParentComponent extends Component {
handleClick = () => this.component.apiMethod();
render() {
return (
<div>
<button onClick={this.handleClick}>call api method!</button>
<EnhancedCustomComponent ref={r => this.component = r } />
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment