import React from 'react'; import { FaTimes } from 'react-icons/fa'; import type { SettingsSection } from './SettingsPanel'; interface SettingsSidebarProps { activeSection: SettingsSection; onSectionChange: (section: SettingsSection) => void; onClose: () => void; } const SettingsSidebar: React.FC = ({ activeSection, onSectionChange, onClose }) => { const sections = [ { id: 'general' as SettingsSection, label: 'General' }, { id: 'audio_io' as SettingsSection, label: 'Audio I/O' }, { id: 'behavior' as SettingsSection, label: 'Behavior' }, { id: 'templates' as SettingsSection, label: 'Templates' }, { id: 'chord_guide' as SettingsSection, label: 'Chord Guide' } ]; return (

Settings

); }; export default SettingsSidebar;