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

@@ -101,4 +101,17 @@ export interface FilterTabsProps {
export interface InfoBannerProps {
boldText?: string;
normalText?: string;
}
}
export interface TableRowData {
id: string;
block: string;
floor: string;
zone: string;
department: string;
location: string;
window: string;
tat: string;
sched: number;
approval: boolean;
status: 'ACTIVE' | 'INACTIVE';
}