Updated contents for all pages and application name

This commit is contained in:
2021-07-25 18:27:17 +07:00
parent fc4c9ccf4f
commit 7d301af249
5 changed files with 11 additions and 10 deletions

View File

@@ -5,6 +5,6 @@ import { View } from '../../views/view';
@customElement('admin-view')
export class AdminView extends View {
render() {
return html`<div>Content placeholder</div>`;
return html`<div>Admin</div>`;
}
}

View File

@@ -5,6 +5,6 @@ import { View } from '../../views/view';
@customElement('home-view')
export class HomeView extends View {
render() {
return html`<div>Content placeholder</div>`;
return html`<div>Home</div>`;
}
}

View File

@@ -5,6 +5,6 @@ import { View } from '../../views/view';
@customElement('profile-view')
export class ProfileView extends View {
render() {
return html`<div>Content placeholder</div>`;
return html`<div>Profile</div>`;
}
}