'use client'; /** * `@djangocfg/ui-tools/json-editor` subpath entrypoint. * * Heavy editor (~58 KB minified for `json-edit-react` alone). Lazy-load * so consumers that only display JSON pay nothing — they should use * `@djangocfg/ui-tools/json-tree` instead, which is ~10× lighter. */ import { createLazyComponent, LoadingFallback } from '../../../common/lazy-wrapper'; import type { JsonEditorProps } from './JsonEditor'; export type { JsonEditorProps } from './JsonEditor'; export const LazyJsonEditor = createLazyComponent( () => import('./JsonEditor').then((m) => ({ default: m.JsonEditor })), { displayName: 'LazyJsonEditor', fallback: , }, ); export { LazyJsonEditor as JsonEditor };