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