Initial commit
This commit is contained in:
12
app/webinars/[id]/page.tsx
Normal file
12
app/webinars/[id]/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import WebinarDetailClient from "./WebinarDetailClient";
|
||||
|
||||
interface WebinarDetailPageProps {
|
||||
params: Promise<{ id: string }>;
|
||||
}
|
||||
|
||||
export default async function WebinarDetailPage({
|
||||
params,
|
||||
}: WebinarDetailPageProps) {
|
||||
const { id } = await params;
|
||||
return <WebinarDetailClient id={id} />;
|
||||
}
|
||||
Reference in New Issue
Block a user