'use client' import React from 'react' import styles from './spellbook-tabs.module.css' export interface SpellSchool { id: string name: string icon?: string } export interface SpellbookTabsProps { spellSchools: SpellSchool[] activeTab: string onChange?: (schoolId: string) => void className?: string } export function SpellbookTabs({ spellSchools, activeTab, onChange, className = '', }: SpellbookTabsProps) { return (