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