import React from 'react'; import JSONTree from 'react-json-tree'; import theme from 'components/common/JSONViewer/themes/google'; interface JSONViewerProps { data: Record; } const JSONViewer: React.FC = ({ data }) => ( true} hideRoot /> ); export default JSONViewer;