cubetiq-fusion/frontend/views/home/home-view.ts

11 lines
254 B
TypeScript
Raw Normal View History

2021-07-25 17:44:30 +07:00
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>`;
}
}