// ─── Game Components Index ────────────────────────────────────────────────────── // Re-exports all game tab components for cleaner imports // Tab components (consolidated in tabs/ subfolder) export { SpellsTab } from './tabs/SpellsTab'; export { StatsTab } from './tabs/StatsTab'; // UI components export { ActionButtons } from './ActionButtons'; export { ManaDisplay } from './ManaDisplay'; export { TimeDisplay } from './TimeDisplay'; export { UpgradeDialog } from './UpgradeDialog'; export { AttunementStatus } from './AttunementStatus'; export { ActivityLogPanel } from './ActivityLogPanel';