November 2019
Beginner
804 pages
20h 1m
English
We will now create the component that will receive and render a book collection. Again, this component can remain dumb:
Start by creating the component using the CLI:
ng g c components/book-list
Then, adapt the controller as follows:
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { Book } from '../../entities/book.entity'; @Component({ selector: 'app-book-list', templateUrl: './book-list.component.html', styleUrls: ['./book-list.component.scss'] }) export class ...Read now
Unlock full access