UNPKG

tmemory

Version:

A terminal-based Memory card game built with React Ink. Features multiple grid sizes, AI opponent, and high scores.

9 lines (8 loc) 255 B
import React from 'react'; import { GameMode, GridDimension } from '../../../types/game.js'; interface LeaderboardProps { gameMode: GameMode; gridDimension: GridDimension; } export declare const Leaderboard: React.FC<LeaderboardProps>; export {};