refactor: consolidate all tab components into src/components/game/tabs/
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m23s

This commit is contained in:
2026-05-19 11:44:25 +02:00
parent 48a5ad1855
commit 3dcd967949
13 changed files with 21 additions and 17 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
// ─── Game Components Index ──────────────────────────────────────────────────────
// Re-exports all game tab components for cleaner imports
// Tab components
export { SpellsTab } from './SpellsTab';
export { StatsTab } from './StatsTab';
// Tab components (consolidated in tabs/ subfolder)
export { SpellsTab } from './tabs/SpellsTab';
export { StatsTab } from './tabs/StatsTab';
// UI components
export { ActionButtons } from './ActionButtons';
+2 -2
View File
@@ -2,5 +2,5 @@
// Re-exports all existing tab components for lazy loading from page.tsx
export { DisciplinesTab } from './DisciplinesTab';
export { SpellsTab } from '../SpellsTab';
export { StatsTab } from '../StatsTab';
export { SpellsTab } from './SpellsTab';
export { StatsTab } from './StatsTab';