init remix app

This commit is contained in:
Nathaniel Tampus
2023-02-06 15:17:49 +08:00
parent 015977aa82
commit c03cf47bc3
16 changed files with 216 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import { Chessboard } from "react-chessboard";
const Board = () => {
return (
<div>
<Chessboard />
</div>
);
};
export default Board;