Betterzon/Frontend/src/app/pages/profile-page/profile-page.component.ts
2021-06-17 09:58:49 +02:00

16 lines
298 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-profile-page',
templateUrl: './profile-page.component.html',
styleUrls: ['./profile-page.component.css']
})
export class ProfilePageComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}