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

11 lines
260 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('profile-view')
export class ProfileView extends View {
render() {
return html`<div>Content placeholder</div>`;
}
}