Files
UTMS-NG-FE/hooks/useTenantHeader.ts
2026-04-21 06:30:48 +07:00

7 lines
166 B
TypeScript

import { useTenantStore } from "@/store/tenantStore";
export function useTenantHeader() {
const tenantId = useTenantStore((s) => s.tenantId);
return tenantId;
}