added search component from all pages

This commit is contained in:
2025-11-16 12:06:54 +01:00
parent 3ba843af6a
commit 19afeb6369
17 changed files with 172 additions and 22 deletions
+9 -1
View File
@@ -1 +1,9 @@
<p>supplier works!</p>
<div class="flex mt-2">
<div class="ml-95 w-150">
<app-search></app-search>
</div>
</div>
<div class="mt-1">
<p>supplier works!</p>
</div>
+4 -1
View File
@@ -1,8 +1,11 @@
import { Component } from '@angular/core';
import {Search} from "../../components/search/search";
@Component({
selector: 'app-supplier',
imports: [],
imports: [
Search
],
templateUrl: './supplier.html',
styleUrl: './supplier.css',
})