Basic functionality

This commit is contained in:
2025-05-26 04:22:15 +02:00
parent 2f523a9219
commit 521e53fadd
6 changed files with 193 additions and 4 deletions

View File

@ -0,0 +1,8 @@
import {createContext} from "react";
import type IGame from "../types/IGame.ts";
export const GamesContext = createContext<{games: IGame[]}>(
{
games: []
}
);