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(); constructor() {} ngOnInit(): void {} close() { this.childEvent.emit("closeCardList"); } }