Commit 0c86e33e by Arjun Jhukal

updated the minor change

parent 654ac5dc
// app/(dashboard)/exclusive-games/[id]/page.tsx
import ExlusiveGameDetail from "@/components/pages/dashboard/userDashboard/games/exclusiveGames/exclusiveGameDetail";
import { getSingleGame } from "@/serverApi/game";
export default async function UserGameDetail({ params }: { params: { id: string } }) {
// { params }: { params: { id: string } }
export default async function UserGameDetail() {
// const game = await getSingleGame(params.id);
// return <ExlusiveGameDetail game={game.data} />;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment