saydata
Version:
Saydata seamlessly integrates AI-driven analytics for your customers into your app. Designed for beautiful visualization. Engineered for simplicity.
15 lines (14 loc) • 536 B
TypeScript
import { ChatItem } from "../models/Chat";
type RowsViewProps = {
rows: any;
blockId: string;
loading?: boolean;
chat?: ChatItem;
showFooter?: boolean;
showExport?: boolean;
dashboardId?: string;
gridHeight?: string;
addChartToDashboard?: (id: string, chat: ChatItem, type: string) => void;
};
export default function RowsView({ rows, blockId, loading, chat, showFooter, showExport, dashboardId, gridHeight, addChartToDashboard, }: RowsViewProps): import("react/jsx-runtime").JSX.Element;
export {};