import { FunctionComponent } from 'react'; export type Serializable = | string | number | boolean | null | undefined | Array | Record; export interface IJsonDumpProps { json: Serializable; } export const JsonDump: FunctionComponent = ({ json }) => { return (
      {JSON.stringify(json, null, 2)}
    
); };