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() {
|
2021-07-25 18:27:17 +07:00
|
|
|
return html`<div>Profile</div>`;
|
2021-07-25 17:44:30 +07:00
|
|
|
}
|
|
|
|
}
|