16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
|
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 {
|
||
|
}
|
||
|
|
||
|
}
|