(props, context)
| 18623 | }; |
| 18624 | |
| 18625 | function Provider(props, context) { |
| 18626 | _classCallCheck(this, Provider); |
| 18627 | |
| 18628 | var _this = _possibleConstructorReturn(this, _Component.call(this, props, context)); |
| 18629 | |
| 18630 | _this[storeKey] = props.store; |
| 18631 | return _this; |
| 18632 | } |
| 18633 | |
| 18634 | Provider.prototype.render = function render() { |
| 18635 | return _react.Children.only(this.props.children); |
nothing calls this directly
no test coverage detected