mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
export default function Page({
|
|
params,
|
|
searchParams,
|
|
}: {
|
|
params: { slug: string };
|
|
searchParams?: { [key: string]: string | string[] | undefined };
|
|
}) {
|
|
return <h1>List all tutorials</h1>;
|
|
}
|