'use client'; /** * Lazy-loaded Tour Component */ import { createLazyComponent, LoadingFallback } from '../../../common/lazy-wrapper'; import type { TourProps, TourPopoverProps, TourNavigationProps, } from './types'; export type { TourProps, TourPopoverProps, TourNavigationProps, } from './types'; export const LazyTour = createLazyComponent( () => import('./parts/Tour').then((m) => ({ default: m.Tour })), { displayName: 'LazyTour', fallback: , } ); export const LazyTourPopover = createLazyComponent( () => import('./parts/Tour').then((m) => ({ default: m.TourPopover })), { displayName: 'LazyTourPopover', fallback: null, } ); export const LazyTourNavigation = createLazyComponent( () => import('./parts/Tour').then((m) => ({ default: m.TourNavigation })), { displayName: 'LazyTourNavigation', fallback: null, } );