UNPKG

2.4 kBJavaScriptView Raw
1/* eslint-disable react/prop-types */
2
3'use strict';
4
5var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
6
7var _rax = require('rax');
8
9var _reactChildren = require('react-children');
10
11var _reactChildren2 = _interopRequireDefault(_reactChildren);
12
13function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
15function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16
17function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
18
19function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
20
21var AppContainer = function (_Component) {
22 _inherits(AppContainer, _Component);
23
24 function AppContainer() {
25 _classCallCheck(this, AppContainer);
26
27 return _possibleConstructorReturn(this, (AppContainer.__proto__ || Object.getPrototypeOf(AppContainer)).apply(this, arguments));
28 }
29
30 _createClass(AppContainer, [{
31 key: 'render',
32 value: function render() {
33 if (this.props.component) {
34 return (0, _rax.createElement)(this.props.component, this.props.props);
35 }
36
37 return _reactChildren2.default.only(this.props.children);
38 }
39 }]);
40
41 return AppContainer;
42}(_rax.Component);
43
44module.exports = AppContainer;
\No newline at end of file