'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { RatingProps } from './types'; export const LazyRating = createLazyComponent( () => import('./Rating').then((mod) => ({ default: mod.Rating })), { displayName: 'LazyRating', fallback: (
{Array.from({ length: 5 }).map((_, i) => (
))}
), } ); export type { RatingProps } from './types';