11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
|
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>`;
|
||
|
}
|
||
|
}
|