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