next-ucap-messenger/projects/ucap-webmessenger-ui-profile/src/lib/components/list-item.component.ts

15 lines
304 B
TypeScript
Raw Normal View History

2019-09-18 06:02:21 +00:00
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() {}
}