libs/playground-test-bbs/documentation/examples/src/pgr-bb-with-dynamic-form/pgr-bb-with-dynamic-form.module.ts
No results matching.
| Static components |
components()
|
|
Returns :
{ ExamplePgrBbWithDynamicFormComponent: any; }
|
import { AclModule } from '@allianz/taly-acl/angular';
import { NgModule } from '@angular/core';
import { PgrBbWithDynamicFormModule } from '../../../../src/lib/pgr-bb-with-dynamic-form/pgr-bb-with-dynamic-form.module';
import { ExamplePgrBbWithDynamicFormComponent } from './pgr-bb-with-dynamic-form.component';
@NgModule({
declarations: [ExamplePgrBbWithDynamicFormComponent],
imports: [AclModule, PgrBbWithDynamicFormModule],
exports: [ExamplePgrBbWithDynamicFormComponent]
})
export class ExamplePgrBbWithDynamicFormModule {
static components() {
return {
ExamplePgrBbWithDynamicFormComponent: ExamplePgrBbWithDynamicFormComponent
};
}
}