skidding
This commit is contained in:
11
app/games/[id]/page.tsx
Normal file
11
app/games/[id]/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Suspense } from "react";
|
||||
import GamePageContentF from "./content";
|
||||
|
||||
// page.tsx (Server Component)
|
||||
export default async function GamePageContent({ params }: { params: { id: string } }) {
|
||||
return (
|
||||
<Suspense fallback={<div className="p-4">Loading profile…</div>}>
|
||||
<GamePageContentF placeId={(await params).id} />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user