dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_RecipientsModule cluster_RecipientsModule_declarations cluster_RecipientsModule_imports cluster_RecipientsModule_exports RecipientsComponent RecipientsComponent RecipientsModule RecipientsModule RecipientsComponent->RecipientsModule EmptyRecipientListComponent EmptyRecipientListComponent EmptyRecipientListComponent->RecipientsModule RecipientActionsComponent RecipientActionsComponent RecipientActionsComponent->RecipientsModule RecipientDeleteComponent RecipientDeleteComponent RecipientDeleteComponent->RecipientsModule RecipientDetailComponent RecipientDetailComponent RecipientDetailComponent->RecipientsModule RecipientListComponent RecipientListComponent RecipientListComponent->RecipientsModule RecipientsComponent RecipientsComponent RecipientsModule->RecipientsComponent EmptyRecipientListComponent EmptyRecipientListComponent RecipientsModule->EmptyRecipientListComponent RecipientActionsComponent RecipientActionsComponent RecipientsModule->RecipientActionsComponent RecipientDeleteComponent RecipientDeleteComponent RecipientsModule->RecipientDeleteComponent RecipientDetailComponent RecipientDetailComponent RecipientsModule->RecipientDetailComponent RecipientListComponent RecipientListComponent RecipientsModule->RecipientListComponent SharedModule SharedModule SharedModule->RecipientsModule LoaderModule LoaderModule LoaderModule->RecipientsModule
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';

import { LoaderModule } from '../loader/loader.module';
import { EmptyRecipientListComponent } from './empty-recipient-list';
import { RecipientActionsComponent } from './recipient-actions';
import { RecipientDeleteComponent } from './recipient-delete';
import { RecipientDetailComponent } from './recipient-detail';
import { RecipientListComponent } from './recipient-list';
import { RecipientsComponent } from './recipients.component';
import { SharedModule } from '../shared.module';

@NgModule({
  imports: [
    CommonModule,
    RouterModule,
    FormsModule,
    SharedModule,
    LoaderModule
  ],
  declarations: [
    RecipientsComponent,
    EmptyRecipientListComponent,
    RecipientActionsComponent,
    RecipientDeleteComponent,
    RecipientDetailComponent,
    RecipientListComponent
  ],
  exports: [
    RecipientsComponent,
    EmptyRecipientListComponent,
    RecipientActionsComponent,
    RecipientDeleteComponent,
    RecipientDetailComponent,
    RecipientListComponent
  ],

  providers: []
})
export class RecipientsModule {}

results matching ""

    No results matching ""