Games tab on admin page working

This commit is contained in:
2025-03-04 21:14:24 -05:00
parent 91800574e4
commit ffe51d6fbb
17 changed files with 700 additions and 27 deletions

5
src/interface/Game.ts Normal file
View File

@@ -0,0 +1,5 @@
export interface Game{
gameId?: string;
gameName: string;
gameIcon?: string;
}