UNPKG

react-chess-analysis-board

Version:

React component for a fully featured, stylable chess analysis board.

11 lines (10 loc) 261 B
/// <reference types="react" /> export interface TPanelStyles { panelContainerClassName?: string; panelClassName?: string; } interface TProps { panelStyles?: TPanelStyles; } declare const Panel: (props: TProps) => JSX.Element; export default Panel;