UNPKG

@blocktion/json-to-table

Version:

A powerful, modular React component for converting JSON data to navigable tables with advanced features like automatic column detection, theming, and sub-table navigation. Part of the Blocktion SaaS project ecosystem.

10 lines (9 loc) 240 B
import React from "react"; interface NavigableCellProps { value: unknown; displayText: string; onNavigate: () => void; type: "array" | "object"; } export declare const NavigableCell: React.FC<NavigableCellProps>; export {};