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