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