'use client'; import { createLazyComponent, LoadingFallback } from '../../../common/lazy-wrapper'; import type { KanbanProps } from './types'; export const LazyKanban = createLazyComponent( () => import('./parts/Kanban').then((m) => ({ default: m.Kanban })), { displayName: 'LazyKanban', fallback: , }, ); // Re-export light surface synchronously export * from './types'; export { KanbanProvider, useKanbanContext, } from './context/KanbanContext'; export type { KanbanContextValue, KanbanProviderProps, } from './context/KanbanContext';