Skip to content
Snippets Groups Projects

Feature games list

Merged Yusuf Akgül requested to merge FeatureGamesList into main
5 files
+ 113
96
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 7
0
import { getGames } from "@/lib/igdb";
import { NextRequest, NextResponse } from "next/server";
export async function GET() {
const games = await getGames();
return NextResponse.json(games);
}
Loading