dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_BooksViewsModule cluster_BooksViewsModule_imports cluster_BooksViewsModule_declarations BooksViewComponent BooksViewComponent BooksViewsModule BooksViewsModule BooksViewComponent->BooksViewsModule BooksRoutingModule BooksRoutingModule BooksRoutingModule->BooksViewsModule

File

src/app/books/books-views/books-views.module.ts

Declarations

import { NgModule } from "@angular/core"
import { FlexLayoutModule } from '@angular/flex-layout'

import { BooksRoutingModule } from './books-routing.module'
import { BooksComponentsModule } from '../books-components/books-components.module'
import { BooksViewComponent } from './views/books/books-view.component'
import { BookComponentsModule } from '../../book/book-components/book-components.module'

@NgModule({
  imports: [
    BooksRoutingModule,
    BooksComponentsModule,
    BookComponentsModule,
    FlexLayoutModule
  ],
  declarations: [
    // Views
    BooksViewComponent
  ],
  exports: []
})
export class BooksViewsModule {
  constructor() {
    console.log('[BooksViewsModule] constructor()')
  }
}

result-matching ""

    No results matching ""