UNPKG

yahoi

Version:

Yet Another Highly Opinionated Isomorphic Framework

55 lines (37 loc) 3.15 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = undefined; 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; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _styledComponents = require('styled-components'); var _styledComponents2 = _interopRequireDefault(_styledComponents); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 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; } 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; } var FooterWrapper = _styledComponents2.default.section.withConfig({ displayName: 'Footer__FooterWrapper', componentId: 's1e2yw06-0' })(['text-align:center;display:flex;flex-direction:column;font-size:12px;font-family:verdana;text-align:justify;color:#777777;']); var Footer = function (_React$Component) { _inherits(Footer, _React$Component); function Footer() { _classCallCheck(this, Footer); return _possibleConstructorReturn(this, (Footer.__proto__ || Object.getPrototypeOf(Footer)).apply(this, arguments)); } _createClass(Footer, [{ key: 'render', value: function render() { return _react2.default.createElement( FooterWrapper, null, 'Nulla ultrices libero nec augue tempus venenatis. Nunc elit erat, placerat vel velit eu, suscipit pulvinar turpis. Maecenas libero felis, accumsan nec lorem sit amet, ultricies eleifend libero. Ut et suscipit diam, at scelerisque magna. Ut quis sapien nec velit pulvinar mattis dictum sed tortor. Duis ut turpis at est iaculis consectetur. Suspendisse vestibulum tincidunt sodales. Morbi ligula lectus, posuere non purus id, consectetur ultrices urna. Vivamus vel semper sapien.' ); } }]); return Footer; }(_react2.default.Component); exports.default = Footer;