Get started
Install
npm install react-chessboard-ui
Add in project
import type { FC } from "react";
import { ChessBoard } from "react-chessboard-ui";
export const App: FC = () => {
return (
<div className="app">
<ChessBoard
FEN="rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
onChange={(data) => {}}
onEndGame={(result) => {}}
/>
</div>
);
}
Styles are injected automatically when the package is imported. The package adds one browser style tag with the id react-chessboard-ui-styles.