fixed errors

This commit is contained in:
2025-11-30 11:44:37 +01:00
parent 0189fb0440
commit 5c1403e934
5 changed files with 2 additions and 32 deletions

View File

@@ -1,8 +1,4 @@
<div class="flex mt-2">
<app-modal-button type="primary" name="Créer un devis">
<app-quotation-form></app-quotation-form>
</app-modal-button>
<div class="ml-95 w-150">
<app-search></app-search>
</div>

View File

@@ -1,17 +1,11 @@
import { Component } from '@angular/core';
import {Search} from "../../components/search/search";
import {DelivereryNoteTable} from "../../components/deliverery-note-table/deliverery-note-table";
import {ModalButton} from "../../components/modal-button/modal-button";
import {DelivereryNoteForm} from "../../components/deliverery-note-form/deliverery-note-form";
import {QuotationForm} from "../../components/quotation-form/quotation-form";
import {QuotationTable} from "../../components/quotation-table/quotation-table";
@Component({
selector: 'app-quotation',
imports: [
ModalButton,
Search,
QuotationForm,
QuotationTable
],
templateUrl: './quotation.html',