import { Component, OnInit, ContentChild, ElementRef, AfterViewInit, ViewChild } from '@angular/core'; @Component({ selector: 'onguard-card', templateUrl: './card.component.html', styleUrls: ['./card.component.scss'] }) export class CardComponent implements OnInit, AfterViewInit { constructor() { } // @ContentChild('.card-header') cardHeader: ElementRef; @ContentChild('header') header: ElementRef; @ContentChild('body') body: ElementRef; @ContentChild('footer') footer: ElementRef; ngOnInit(): void { } ngAfterViewInit(): void { } }