Documentation: - Add comprehensive README.md with project overview - Update AGENTS.md with new file structure and slice pattern - Add AUDIT_REPORT.md documenting unimplemented effects Refactoring (page.tsx: 1695 → 434 lines, 74% reduction): - Extract SkillsTab.tsx component - Extract StatsTab.tsx component - Extract UpgradeDialog.tsx component - Move getDamageBreakdown and getTotalDPS to computed-stats.ts - Move ELEMENT_ICON_NAMES to constants.ts All lint checks pass, functionality preserved.
10 lines
491 B
TypeScript
10 lines
491 B
TypeScript
// ─── Tab Components Index ──────────────────────────────────────────────────────
|
|
// Re-exports all tab components for cleaner imports
|
|
|
|
export { CraftingTab } from './CraftingTab';
|
|
export { SpireTab } from './SpireTab';
|
|
export { SpellsTab } from './SpellsTab';
|
|
export { LabTab } from './LabTab';
|
|
export { SkillsTab } from './SkillsTab';
|
|
export { StatsTab } from './StatsTab';
|