Changes done in constant folder

This commit is contained in:
2026-07-29 18:40:34 +05:30
parent 152be044ec
commit 65add5799e
7 changed files with 185 additions and 10 deletions

View File

@@ -115,3 +115,9 @@ export interface TableRowData {
approval: boolean;
status: 'ACTIVE' | 'INACTIVE';
}
export type TableProps = {
headers: string[];
rows: React.ReactNode[][];
};