tech.lbry.org/app/components/note.js
Ben van Hartingsveldt cedccbcc00
Fix tutorials page
2025-07-23 20:39:13 +02:00

19 lines
245 B
JavaScript

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