import { Component } from '@angular/core'; @Component({ selector: 'app-whislist', templateUrl: './whislist.component.html', styleUrls: ['./whislist.component.scss'], }) export class WhislistComponent { Cardremove(rowId: string) { const rowElement = document.getElementById(rowId); if (rowElement) { rowElement.remove(); } } }