Initial import NDC_1C
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
interface JsonViewProps {
|
||||
value: unknown;
|
||||
}
|
||||
|
||||
export function JsonView({ value }: JsonViewProps) {
|
||||
return <pre className="json-view">{JSON.stringify(value ?? {}, null, 2)}</pre>;
|
||||
}
|
||||
Reference in New Issue
Block a user