19 lines
324 B
JavaScript
19 lines
324 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>LBRYCRD is deprecated and not officially supported anymore. It is recommended to use LBCD.</span>
|
|
</div>
|
|
`;
|