mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-18 14:59:19 +00:00
16 lines
298 B
TypeScript
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 {
|
|
}
|
|
|
|
}
|