Skip to content

Instantly share code, notes, and snippets.

@mmiszy
Created May 6, 2020 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmiszy/0d10604a613f7d154142db1ce78b1753 to your computer and use it in GitHub Desktop.
Save mmiszy/0d10604a613f7d154142db1ce78b1753 to your computer and use it in GitHub Desktop.
class DataContainer extends React.Component {
// …
render() {
return this.props.children(this.state.data);
}
}
// i potem:
<DataContainer>
{data => <div>{data}</div>}
</DataContainer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment