import { useChessGame } from "#/hooks/useChessGame.ts"; import Chessboard from "#/pages/Chessboard.tsx"; const ChessboardContainer = () => { const chessGameProps = useChessGame(); return ( ); }; export default ChessboardContainer;