PostENP/Phaha_Package/src/app/book/book-cart/book-cart.component.ts

16 lines
287 B
TypeScript
Raw Normal View History

2026-03-10 15:20:38 +07:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-book-cart',
templateUrl: './book-cart.component.html',
styleUrls: ['./book-cart.component.scss']
})
export class BookCartComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}