20230727book-monkey-Erweiterung

This commit is contained in:
2023-07-27 16:15:33 +02:00
parent bdcdd8a6ff
commit fe2cf8f994
27 changed files with 951 additions and 524 deletions

View 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 {}