15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
|
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() {}
|
||
|
}
|