Activity 32: Angular Library Grid
Create book.model.ts
Define the structure of your book data in src/app/models/book.model.ts:
export interface Book {
id: number;
title: string;
author: string;
price: number;
stock: number;
coverImage: string;
}
Create boo...
rodelcalda.hashnode.dev2 min read