import { Component } from '@angular/core'; /** * Component intended to be used within the `` and `` components. * * Use it as a container for the front card. */ @Component({ selector: 'nb-card-front', template: '', }) export class NbCardFrontComponent { } /** * Component intended to be used within the `` and `` components. * * Use it as a container for the back card. */ @Component({ selector: 'nb-card-back', template: '', }) export class NbCardBackComponent { }