grafana/public/app/features/explore/JSONViewer.tsx
2019-07-30 15:49:32 +02:00

10 lines
164 B
TypeScript

import React from 'react';
export default function({ value }: any) {
return (
<div>
<pre>{JSON.stringify(value, undefined, 2)}</pre>
</div>
);
}