All Screens in Operations are added

This commit is contained in:
2026-07-22 18:34:47 +05:30
parent 06bbfe06fb
commit 89e93366e1
17 changed files with 2050 additions and 146 deletions

View File

@@ -0,0 +1,14 @@
"use client"
import InventoryPortal from "@/components/dashboard/inventory";
export default function InventoryPage() {
return (
<div className="p-8 mx-3">
<InventoryPortal/>
</div>
);
}