//book.model.ts export interface Book { title: string; author: string; genre: string; rating: string image: string; } //book.component.ts import { Component } from '@angular/core'; import { Book } from './book.model'; import { ...
act4.hashnode.dev2 min read
No responses yet.