7 lines
86 B
TypeScript
7 lines
86 B
TypeScript
export interface PageProps {
|
|
params: {
|
|
slug: string;
|
|
};
|
|
searchParams: {};
|
|
}
|