cubetiq-fusion/frontend/views/home/home-view.ts
2021-07-25 10:44:30 +00:00

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>`;
}
}