mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
interface JsonPreviewProps {
|
|
value: Record<string, any> | string;
|
|
}
|
|
|
|
export const JsonPreview = ({ value }: JsonPreviewProps) => {
|
|
return <pre style={{ userSelect: 'all' }}>{JSON.stringify(value, null, 2)}</pre>;
|
|
};
|