riya_business_travel_7.5.5/public/app/features/explore/JSONViewer.tsx
venbatechnologies@gmail.com 16f7870fa5 Initial commit
2021-07-05 12:44:38 +05:30

10 lines
175 B
TypeScript

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