21 lines
400 B
TypeScript
21 lines
400 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-user-profile",
|
|
templateUrl: "./user-profile.component.html",
|
|
styleUrls: ["./user-profile.component.css"],
|
|
})
|
|
export class UserProfileComponent {
|
|
public breadcrumb: any;
|
|
|
|
activeTab: string = "profile-info2";
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
|
|
selectTab(tabName: string) {
|
|
this.activeTab = tabName;
|
|
}
|
|
}
|