UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

7 lines (6 loc) 182 B
import * as React from 'react'; export interface JsonAtomProps { value: unknown; onClick?: React.MouseEventHandler; } export declare const JsonAtom: React.FC<JsonAtomProps>;