Adding models and components

This commit is contained in:
2022-09-02 14:39:24 +02:00
parent 8e3322a9f8
commit 18a02f0940
42 changed files with 492 additions and 566 deletions
@@ -0,0 +1,23 @@
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-header',
templateUrl: './header.component.html',
styleUrls: ['./header.component.scss']
})
export class HeaderComponent implements OnInit {
showProfilePopover: boolean = false;
constructor() {
}
ngOnInit(): void {
}
openProfile(): void {
console.log('Called');
this.showProfilePopover = !this.showProfilePopover;
}
}