mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
import React from 'react';
|
|
|
|
export default function({ value }) {
|
|
return (
|
|
<div>
|
|
<pre>{JSON.stringify(value, undefined, 2)}</pre>
|
|
</div>
|
|
);
|
|
}
|