18 lines
448 B
TypeScript
18 lines
448 B
TypeScript
import {Component, inject, OnInit, signal} from '@angular/core';
|
|
import {BookTable} from "../../components/book-table/book-table";
|
|
import {Modal} from "../../components/modal/modal";
|
|
import {CreateBook} from "../../components/create-book/create-book";
|
|
|
|
@Component({
|
|
selector: 'app-book',
|
|
imports: [
|
|
BookTable,
|
|
Modal,
|
|
CreateBook
|
|
],
|
|
templateUrl: './book.html',
|
|
styleUrls: ['./book.css'],
|
|
})
|
|
export class Book{
|
|
}
|