UNPKG

llm-ui-objects

Version:

Interactive object components for LLM-powered writing interfaces

11 lines (10 loc) 297 B
import React from "react"; interface CellBoardProps { initialBoard: string[][]; maxRows: number; maxColumns: number; setEntryCell: (cellId: string | undefined) => void; style?: React.CSSProperties; } declare const CellBoard: React.FC<CellBoardProps>; export default CellBoard;