First commit

This commit is contained in:
charles-gauthereau
2024-11-03 15:29:30 +01:00
parent ba9dddf0aa
commit d6ff290f66
68 changed files with 696 additions and 228 deletions
+10
View File
@@ -0,0 +1,10 @@
export type LayoutParams<T extends Record<string, string | string[]>> = {
children: React.ReactNode;
params: T;
};
export type PageParams<T extends Record<string, string | string[]>> = {
params: T;
searchParams: {[key: string]: string | string[] | undefined};
};