aiao-io/aiao

View on GitHub
apps/dev-lazy-component/src/app/alone-dialog/alone-dialog.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { LazyComponentModule, WithIvyLazyComponent } from '@aiao/lazy-component';
import { NgModule, Type } from '@angular/core';

import { AloneDialogComponent } from './alone-dialog.component';

@NgModule({
  declarations: [AloneDialogComponent],
  imports: [LazyComponentModule],
  entryComponents: [AloneDialogComponent]
})
export class AloneDialogModule implements WithIvyLazyComponent {
  customElementComponents: Type<any>[] = [AloneDialogComponent];
}