()
| 15 | setTimeout(() => this.setState({ data: 'Hey there!' }), 5000); |
| 16 | } |
| 17 | render() { |
| 18 | if (this.state.data === null) return null; |
| 19 | return <section>{ this.props.render(this.state.data) }</section>; |
| 20 | } |
| 21 | } |
| 22 | DataProvider.propTypes = { |
| 23 | render: PropTypes.func |