UNPKG

@khazh/tic-tac-toe-react

Version:

A customizable Tic Tac Toe game component for React with AI opponent, configurable board size, and win conditions

10 lines 547 B
export { default as TicTacToe } from "./components/TicTacToe"; export { default as Button } from "./components/atoms/Button"; export type { Player, GameMode, Board, GameConfig, GameState, Score, } from "./types/game"; export { useGameState } from "./hooks/useGameState"; export { useScore } from "./hooks/useScore"; export { useAI } from "./hooks/useAI"; export { useGameMode } from "./hooks/useGameMode"; export { useBoardSize } from "./hooks/useBoardSize"; export { useWinLength } from "./hooks/useWinLength"; //# sourceMappingURL=index.d.ts.map