import React from 'react'; export default function JSONViewer({ value }: any) { return (
{JSON.stringify(value, undefined, 2)}
); }