'use client'; import { createLazyComponent, LoadingFallback } from '../../../common/lazy-wrapper'; import type { TreeRootProps } from './types'; export const LazyTree = createLazyComponent>( () => import('./TreeRoot'), { displayName: 'LazyTree', fallback: , }, ); export type { TreeRootProps };