added deliverer page with deliverer-form and deliverer-table

This commit is contained in:
2025-11-15 15:12:53 +01:00
parent 4037117ad3
commit d43f46b906
9 changed files with 502 additions and 3 deletions

View File

@@ -1 +1,7 @@
<p>deliverer works!</p>
<app-modal-button name="Ajouter un transporteur">
<app-deliverer-form></app-deliverer-form>
</app-modal-button>
<div class="mt-4">
<app-deliverer-table></app-deliverer-table>
</div>

View File

@@ -1,8 +1,15 @@
import { Component } from '@angular/core';
import {ModalButton} from "../../components/modal-button/modal-button";
import {DelivererTable} from "../../components/deliverer-table/deliverer-table";
import {DelivererForm} from "../../components/deliverer-form/deliverer-form";
@Component({
selector: 'app-deliverer',
imports: [],
imports: [
ModalButton,
DelivererTable,
DelivererForm
],
templateUrl: './deliverer.html',
styleUrl: './deliverer.css',
})