UNPKG

@jbrowse/core

Version:

JBrowse 2 core libraries used by plugins

14 lines (13 loc) 665 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = BaseCoreDetails; const jsx_runtime_1 = require("react/jsx-runtime"); const BaseCard_1 = __importDefault(require("./BaseCard")); const CoreDetails_1 = __importDefault(require("./CoreDetails")); function BaseCoreDetails(props) { const { title = 'Primary data' } = props; return ((0, jsx_runtime_1.jsx)(BaseCard_1.default, { ...props, title: title, children: (0, jsx_runtime_1.jsx)(CoreDetails_1.default, { ...props }) })); }