queue/source/utilities/components/page-header.ts

14 lines
255 B
TypeScript
Raw Normal View History

2020-11-11 17:17:37 +00:00
import {html} from 'htm/preact';
import {QComponent} from '../..';
export function PageHeader(): QComponent {
return html`
<header class="page-header">
<h1>
<span class="icon"></span>
Queue
</h1>
</header>
`;
}