20 lines
457 B
20 lines
457 B
import { Component, EventEmitter, Input, OnInit, Output } from "@angular/core"; |
|
|
|
@Component({ |
|
selector: "app-card-list", |
|
templateUrl: "./card-list.component.html", |
|
styleUrls: ["./card-list.component.scss"], |
|
}) |
|
export class CardListComponent implements OnInit { |
|
@Input() title; |
|
@Input() data; |
|
|
|
@Output() childEvent = new EventEmitter<any>(); |
|
constructor() {} |
|
|
|
ngOnInit(): void {} |
|
|
|
close() { |
|
this.childEvent.emit("closeCardList"); |
|
} |
|
}
|
|
|