11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
|
import { html } from 'lit';
|
||
|
import { customElement } from 'lit/decorators.js';
|
||
|
import { View } from '../../views/view';
|
||
|
|
||
|
@customElement('home-view')
|
||
|
export class HomeView extends View {
|
||
|
render() {
|
||
|
return html`<div>Content placeholder</div>`;
|
||
|
}
|
||
|
}
|