tech.lbry.org/app/components/note.js
2025-07-23 21:18:52 +02:00

19 lines
264 B
JavaScript

"use strict";
// I M P O R T
import { html } from 'hono/html'
// E X P O R T
export default () => html`
<div class="component--note">
<strong class="component--note__title">Note</strong>
<span>It is recommended to use LBCD.</span>
</div>
`;