'use client'; import { createLazyComponent } from '../../../common/lazy-wrapper'; import type { MarqueeProps } from './types'; export const LazyMarquee = createLazyComponent( () => import('./Marquee').then((mod) => ({ default: mod.Marquee })), { displayName: 'LazyMarquee', fallback:
, } ); export type { MarqueeProps } from './types';