Add logout functionality

This commit is contained in:
kevinpauer
2022-03-19 22:41:44 +01:00
parent 33c915f4be
commit c9122292f1
4 changed files with 27 additions and 21 deletions

View File

@@ -3,13 +3,10 @@ import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-profile',
templateUrl: './profile.component.html',
styleUrls: ['./profile.component.scss']
styleUrls: ['./profile.component.scss'],
})
export class ProfileComponent implements OnInit {
constructor() {}
constructor() { }
ngOnInit(): void {
}
ngOnInit(): void {}
}