working on restore form.

This commit is contained in:
killian-larcher
2024-11-17 19:13:51 +01:00
parent ff9e3ffa67
commit 5d19970373
19 changed files with 1381 additions and 32 deletions
+4 -3
View File
@@ -4,7 +4,8 @@ export type LayoutParams<T extends Record<string, string | string[]>> = {
};
export type PageParams<T extends Record<string, string | string[]>> = {
params: T;
searchParams: { [key: string]: string | string[] | undefined };
};
params: Promise<T>;
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
};