17 lines
384 B
TypeScript
17 lines
384 B
TypeScript
import {Component} from '@angular/core';
|
|
import {Search} from "../../components/search/search";
|
|
import {QuotationTable} from "../../components/quotation-table/quotation-table";
|
|
|
|
@Component({
|
|
selector: 'app-quotation',
|
|
imports: [
|
|
Search,
|
|
QuotationTable
|
|
],
|
|
templateUrl: './quotation.html',
|
|
styleUrl: './quotation.css',
|
|
})
|
|
export class Quotation {
|
|
|
|
}
|