UNPKG

asg-test

Version:

10 lines (9 loc) 272 B
import './ChessBoardStyle.css'; import React from 'react'; interface ChessBoardProps { boardSide?: "w" | "b"; setBoardData: string[][]; getBoardData: (data: string[][]) => void; } declare const ChessBoard: React.FC<ChessBoardProps>; export default ChessBoard;