Files
grafana/public/app/features/explore/JSONViewer.tsx
T

10 lines
175 B
TypeScript
Raw Normal View History

2018-07-20 17:07:17 +02:00
import React from 'react';
export default function JSONViewer({ value }: any) {
2018-07-20 17:07:17 +02:00
return (
<div>
<pre>{JSON.stringify(value, undefined, 2)}</pre>
</div>
);
}