Initial import NDC_1C

This commit is contained in:
2026-03-26 10:38:25 +03:00
commit a162d77ef7
2943 changed files with 3615871 additions and 0 deletions
@@ -0,0 +1,7 @@
interface JsonViewProps {
value: unknown;
}
export function JsonView({ value }: JsonViewProps) {
return <pre className="json-view">{JSON.stringify(value ?? {}, null, 2)}</pre>;
}