👔 forwarding callback data

create a type and implement it in props that pass callback data from root to the component that will process the
request.
This commit is contained in:
2025-08-27 22:47:55 +07:00
parent 1bf56603e0
commit 73c5bff44c
4 changed files with 19 additions and 10 deletions

View File

@ -0,0 +1,4 @@
export interface ParamProps {
params: { provider: string[] };
searchParams: { [key: string]: string | string[] | undefined };
}