class Example extends React.Component { render() { // The inline function will be called when the context value changes, // And when the props value changes! return ( {value => (
Context value:{value}. Props value:{ this.props.counter }
)}
); } }