page.module.ts 2.36 KB
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PageRoutingModule } from './page-routing.module';
import { AboutusComponent } from './aboutus/aboutus.component';
import { ContactusComponent } from './contactus/contactus.component';
import { EmptyComponent } from './empty/empty.component';
import { FaqsComponent } from './faqs/faqs.component';
import { PricingtablesComponent } from './pricingtables/pricingtables.component';
import { ReviewsComponent } from './reviews/reviews.component';
import { TasksComponent } from './tasks/tasks.component';
import { TeamComponent } from './team/team.component';
import { TermsConditionsComponent } from './terms-conditions/terms-conditions.component';
import { TimelineComponent } from './timeline/timeline.component';
import { TodolistComponent } from './todolist/todolist.component';
import { BlogModule } from './blog/blog.module';
import { EcommerceModule } from './ecommerce/ecommerce.module';
import { InvoiceModule } from './invoice/invoice.module';
import { MailModule } from './mail/mail.module';
import { ProfileModule } from './profile/profile.module';
import { ContactsComponent } from './contacts/contacts.component';
import { SharedModule } from 'src/app/shared/sharedmodule';
import { SwiperModule } from 'swiper/angular';
import { NgSelectModule } from '@ng-select/ng-select';
import { MaterialModuleModule } from 'src/app/materialModule/material-module/material-module.module';
import { NgxMatTimepickerModule } from 'ngx-mat-timepicker';
import { LandingComponent } from './landing/landing.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-owl-carousel-o';

@NgModule({
  declarations: [
    AboutusComponent,
    ContactusComponent,
    PricingtablesComponent,
    TimelineComponent,
    TeamComponent,
    TodolistComponent,
    TasksComponent,
    ReviewsComponent,
    FaqsComponent,
    TermsConditionsComponent,
    EmptyComponent,
    ContactsComponent,
    LandingComponent,
  ],
  imports: [
    CommonModule,
    PageRoutingModule,
    EcommerceModule,
    MailModule,
    BlogModule,
    InvoiceModule,
    ProfileModule,
    SharedModule,
    SwiperModule,
    NgSelectModule,
    MaterialModuleModule,
    NgxMatTimepickerModule,
    FormsModule,
    ReactiveFormsModule,
    CarouselModule,
  ],
})
export class PageModule {}