elements.module.ts 1.06 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
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { ElementsRoutingModule } from './elements-routing.module';
import { NavbarComponent } from './navbar/navbar.component';
import { MegamenuComponent } from './megamenu/megamenu.component';
import { NavTabsComponent } from './nav-tabs/nav-tabs.component';
import { ScrollspyComponent } from './scrollspy/scrollspy.component';
import { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
import { PaginationComponent } from './pagination/pagination.component';
import { GridsComponent } from './grids/grids.component';
import { ColumnsComponent } from './columns/columns.component';
import { SharedModule } from 'src/app/shared/sharedmodule';

@NgModule({
  declarations: [
    NavbarComponent,
    MegamenuComponent,
    NavTabsComponent,
    ScrollspyComponent,
    BreadcrumbComponent,
    PaginationComponent,
    GridsComponent,
    ColumnsComponent
  ],
  imports: [
    CommonModule,
    ElementsRoutingModule,
    SharedModule
  ]
})
export class ElementsModule { }