import React from 'react'; import ReactJson, { ReactJsonViewProps } from 'react-json-view'; const defaultJSONViewProps: Partial = { name: false, displayDataTypes: false, enableClipboard: false, iconStyle: 'square', }; /** * Render i18n text with resources..fields. */ export const JSONView: React.FC<{ data: any; options?: Omit; }> = React.memo((props) => { return ( ); }); JSONView.displayName = 'JSONView';