feature-libs/organization/administration/components/shared/card/card.testing.module.ts
| selector | cx-org-card |
| template | |
Properties |
Inputs |
| i18nRoot | |
Type : any
|
|
| previous | |
Type : any
|
|
| i18nRoot |
Decorators :
@Input()
|
| previous |
Decorators :
@Input()
|
import { Component, Input, NgModule } from '@angular/core';
@Component({
selector: 'cx-org-card',
template: '<ng-content></ng-content>',
})
class MockCardComponent {
@Input() i18nRoot;
@Input() previous;
}
@NgModule({
declarations: [MockCardComponent],
exports: [MockCardComponent],
})
export class CardTestingModule {}