feat(warehouse): add items list and detail pages

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-05-29 14:27:15 +02:00
parent 29975ecad9
commit 1b2ab7b4eb
3 changed files with 994 additions and 0 deletions

View File

@@ -153,6 +153,10 @@ export default function AdminApp() {
<Route path="audit-log" element={<AuditLog />} />
<Route path="warehouse" element={<Warehouse />} />
<Route path="warehouse/items" element={<WarehouseItems />} />
<Route
path="warehouse/items/new"
element={<WarehouseItemDetail />}
/>
<Route
path="warehouse/items/:id"
element={<WarehouseItemDetail />}