UNPKG

solrkit

Version:

![Build Status](https://travis-ci.org/garysieling/solrkit.svg?branch=master) ![Dependencies](https://david-dm.org/garysieling/solrkit/status.svg)

29 lines 1.35 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var React = require("react"); var MoreLikeThis = (function (_super) { __extends(MoreLikeThis, _super); function MoreLikeThis() { return _super !== null && _super.apply(this, arguments) || this; } MoreLikeThis.prototype.render = function () { var _a = this.props, docs = _a.docs, render = _a.render; var titleDiv = this.props.title ? (React.createElement("h3", null, this.props.title)) : null; return (React.createElement("div", null, titleDiv, (docs || []).map(function (doc, i) { return React.createElement("div", { key: i }, render(doc)); }))); }; return MoreLikeThis; }(React.Component)); exports.MoreLikeThis = MoreLikeThis; //# sourceMappingURL=MoreLikeThis.js.map