(props)
| 194 | _inherits(DataProvider, _React$Component); |
| 195 | |
| 196 | function DataProvider(props) { |
| 197 | _classCallCheck(this, DataProvider); |
| 198 | |
| 199 | var _this = _possibleConstructorReturn(this, (DataProvider.__proto__ || Object.getPrototypeOf(DataProvider)).call(this, props)); |
| 200 | |
| 201 | _this.state = { data: null }; |
| 202 | setTimeout(function () { |
| 203 | return _this.setState({ data: 'Hey there!' }); |
| 204 | }, 5000); |
| 205 | return _this; |
| 206 | } |
| 207 | |
| 208 | _createClass(DataProvider, [{ |
| 209 | key: 'render', |
nothing calls this directly
no test coverage detected