NODEDC_1C/llm_normalizer/frontend/src/components/JsonView.tsx

8 lines
184 B
TypeScript

interface JsonViewProps {
value: unknown;
}
export function JsonView({ value }: JsonViewProps) {
return <pre className="json-view">{JSON.stringify(value ?? {}, null, 2)}</pre>;
}