Leonid Ganeline 2 weeks ago committed by GitHub
commit 0ea1ab9d9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -16,18 +16,12 @@ function Imports({ imports }) {
borderBottomRightRadius: "var(--ifm-code-border-radius)",
}}
>
<h4 style={{ paddingLeft: "0.65rem", marginBottom: "0.45rem" }}>
<b style={{ paddingLeft: "0.65rem", marginBottom: "0.45rem" }}>
API Reference:
</h4>
<ul style={{ paddingBottom: "1rem" }}>
</b>
{imports.map(({ imported, source, docs }) => (
<li key={imported}>
<a href={docs}>
<span>{imported}</span>
</a>
</li>
<span key={imported}> | <a href={docs}>{imported}</a></span>
))}
</ul>
</div>
);
}

Loading…
Cancel
Save