|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +Object.defineProperty(exports, "__esModule", { |
| 4 | + value: true |
| 5 | +}); |
| 6 | + |
| 7 | +var _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; }; }(); |
| 8 | + |
| 9 | +var _react = require('react'); |
| 10 | + |
| 11 | +var _react2 = _interopRequireDefault(_react); |
| 12 | + |
| 13 | +var _reactIntl = require('react-intl'); |
| 14 | + |
| 15 | +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
| 16 | + |
| 17 | +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } |
| 18 | + |
| 19 | +function _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; } |
| 20 | + |
| 21 | +function _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; } |
| 22 | + |
| 23 | +var Foo = function (_Component) { |
| 24 | + _inherits(Foo, _Component); |
| 25 | + |
| 26 | + function Foo() { |
| 27 | + _classCallCheck(this, Foo); |
| 28 | + |
| 29 | + return _possibleConstructorReturn(this, Object.getPrototypeOf(Foo).apply(this, arguments)); |
| 30 | + } |
| 31 | + |
| 32 | + _createClass(Foo, [{ |
| 33 | + key: 'render', |
| 34 | + value: function render() { |
| 35 | + return _react2.default.createElement(_reactIntl.FormattedHTMLMessage, { |
| 36 | + id: 'foo.bar.baz', |
| 37 | + defaultMessage: '<h1>Hello World!</h1>', |
| 38 | + description: 'The default message.' |
| 39 | + }); |
| 40 | + } |
| 41 | + }]); |
| 42 | + |
| 43 | + return Foo; |
| 44 | +}(_react.Component); |
| 45 | + |
| 46 | +exports.default = Foo; |
| 47 | + |
0 commit comments