22 lines
523 B
TypeScript
22 lines
523 B
TypeScript
import {
|
|
Component,
|
|
OnInit,
|
|
OnDestroy,
|
|
ChangeDetectionStrategy,
|
|
ChangeDetectorRef
|
|
} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ucap-organization-profile-list-item',
|
|
templateUrl: './profile-list-item.component.html',
|
|
styleUrls: ['./profile-list-item.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class ProfileListItemComponent implements OnInit, OnDestroy {
|
|
constructor(private changeDetectorRef: ChangeDetectorRef) {}
|
|
|
|
ngOnInit(): void {}
|
|
|
|
ngOnDestroy(): void {}
|
|
}
|