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) 205 B
import React from 'react'; interface GameLayoutProps { children: React.ReactNode; padding?: number; centered?: boolean; } export declare const GameLayout: React.FC<GameLayoutProps>; export {};