UNPKG

llm-ui-objects

Version:

Interactive object components for LLM-powered writing interfaces

9 lines (8 loc) 209 B
import React from "react"; interface CellTreeProps { cellWidth: number; cellHeight: number; style?: React.CSSProperties; } declare const CellTree: React.FC<CellTreeProps>; export default CellTree;