Converted reports and share routes.

This commit is contained in:
Mike Cao 2025-01-28 10:21:56 -08:00
parent dcac7b7c96
commit 6c9f1ad06b
23 changed files with 574 additions and 5 deletions

View file

@ -26,8 +26,8 @@ export type ReportType = ObjectValues<typeof REPORT_TYPES>;
export interface PageParams {
search?: string;
page?: number;
pageSize?: number;
page?: string;
pageSize?: string;
orderBy?: string;
sortDescending?: boolean;
}