@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
8 lines (7 loc) • 352 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import Attributes from "./Attributes.js";
import BaseCard from "./BaseCard.js";
export default function BaseAttributes(props) {
const { title = 'Attributes', feature } = props;
return (_jsx(BaseCard, { ...props, title: title, children: _jsx(Attributes, { ...props, attributes: feature }) }));
}