import { Component, OnInit } from '@angular/core'; @Component({ selector: 'ucap-profile-list-item', templateUrl: './list-item.component.html', styleUrls: ['./list-item.component.scss'] }) export class ListItemComponent implements OnInit { constructor() {} ngOnInit() {} onClickItem() {} }