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

15 lines
264 B
TypeScript
Raw Normal View History

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