@react-chess-tools/react-chess-game
Version:
react-chess-game is a React component bridging chess.js with react-chessboard to offer a full-featured, ready-to-integrate chess board experience.
14 lines (12 loc) • 298 B
text/typescript
import { Root } from "./parts/Root";
import { Board } from "./parts/Board";
import { Sounds } from "./parts/Sounds";
import { KeyboardControls } from "./parts/KeyboardControls";
import { Clock } from "./Clock";
export const ChessGame = {
Root,
Board,
Sounds,
KeyboardControls,
Clock,
};