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
+7 -1
View File
@@ -1 +1,7 @@
<app-stock-table></app-stock-table>
<div class="ml-130 w-170 mt-2">
<app-search></app-search>
</div>
<div class="mt-1">
<app-stock-table></app-stock-table>
</div>
+2
View File
@@ -1,10 +1,12 @@
import { Component } from '@angular/core';
import {StockTable} from "../../components/stock-table/stock-table";
import {Search} from "../../components/search/search";
@Component({
selector: 'app-stock',
imports: [
StockTable,
Search,
],
templateUrl: './stock.html',
styleUrl: './stock.css',