// Adapted from jalcoui (MIT) — github.com/jal-co/ui 'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { EnvTableProps } from './types'; export const LazyEnvTable = createLazyComponent( () => import('./EnvTable').then((mod) => ({ default: mod.EnvTable })), { displayName: 'LazyEnvTable', fallback: (
), }, ); export type { EnvTableProps } from './types';