created stock page and stock-table component

This commit is contained in:
2025-11-13 18:36:34 +01:00
parent 3ec512f396
commit 8d220d60f8
6 changed files with 168 additions and 63 deletions

View File

@@ -0,0 +1,9 @@
export interface StockInfo {
name: string;
duration: string;
caliber: string;
quantity: number;
weight: number;
nec: string;
minimalQuantity: number;
}