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