16 lines
337 B
TypeScript
16 lines
337 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-book-new-arrivals-item',
|
|
templateUrl: './book-new-arrivals-item.component.html',
|
|
styleUrls: ['./book-new-arrivals-item.component.scss']
|
|
})
|
|
export class BookNewArrivalsItemComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|