20230727book-monkey-Erweiterung
This commit is contained in:
18
src/app/books/books.module.ts
Normal file
18
src/app/books/books.module.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { BooksRoutingModule } from './books-routing.module';
|
||||
import { BookListComponent } from './book-list/book-list.component';
|
||||
import { BookListItemComponent } from './book-list-item/book-list-item.component';
|
||||
import { BookDetailsComponent } from './book-details/book-details.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
BookDetailsComponent,
|
||||
BookListComponent,
|
||||
BookListItemComponent,
|
||||
],
|
||||
imports: [CommonModule, BooksRoutingModule],
|
||||
exports: [BookListComponent, BookDetailsComponent],
|
||||
})
|
||||
export class BooksModule {}
|
||||
Reference in New Issue
Block a user