Doppelkopf-Stats-Frontend/src/app/components/profile/profile.component.ts

16 lines
280 B
TypeScript
Raw Normal View History

2022-09-02 12:39:24 +00:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-profile',
templateUrl: './profile.component.html',
styleUrls: ['./profile.component.scss']
})
export class ProfileComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}