mail.module.ts 815 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { MailRoutingModule } from './mail-routing.module';
import { MailComponent } from './mail/mail.component';
import { ChatComponent } from './chat/chat.component';
import { MailSettingsComponent } from './mail-settings/mail-settings.component';
import { SharedModule } from 'src/app/shared/sharedmodule';
import { NgSelectModule } from '@ng-select/ng-select';
import { SwiperModule } from 'swiper/angular';
import { FormsModule } from '@angular/forms';

@NgModule({
  declarations: [
    MailComponent,
    ChatComponent,
    MailSettingsComponent
  ],
  imports: [
    CommonModule,
    MailRoutingModule,
    SharedModule,
    NgSelectModule,
    SwiperModule,
    FormsModule
    
  ]
})
export class MailModule { }