next-ucap-messenger/projects/ucap-webmessenger-ui-profile/src/lib/components/list-item.component.ts
2019-09-18 15:02:21 +09:00

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() {}
}