interface JsonViewProps { value: unknown; } export function JsonView({ value }: JsonViewProps) { return
{JSON.stringify(value ?? {}, null, 2)}
; }