15 lines
304 B
TypeScript
Raw Normal View History

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