// Adapted from jalcoui (MIT) — github.com/jal-co/ui 'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { RequestViewerProps } from './types'; export const LazyRequestViewer = createLazyComponent( () => import('./RequestViewer').then((mod) => ({ default: mod.RequestViewer, })), { displayName: 'LazyRequestViewer', fallback: (
), }, ); export type { RequestViewerProps, RequestViewerTab, NetworkRequest, HeaderEntry, TimingEntry, } from './types';