14 lines
255 B
TypeScript
14 lines
255 B
TypeScript
|
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>
|
||
|
`;
|
||
|
}
|