Activity 32: Angular Library Grid
book.service.ts
import { Injectable } from '@angular/core';
import { Observable, of } from 'rxjs';
import { Product } from '../Models/book.model';
@Injectable({
providedIn: 'root'
})
export class ProductService {
private products: Product[] = [
...
zaack.hashnode.dev4 min read