"use client"; import { SettingsSection, SettingsRow, SettingsInput } from "../ui"; import { SystemSettings } from "../../types"; interface StoragePathsSectionProps { settings: SystemSettings; onUpdate: (updates: Partial) => void; onTest: (service: string) => Promise<{ success: boolean; version?: string; error?: string }>; isTesting: boolean; } export function StoragePathsSection({ settings, onUpdate }: StoragePathsSectionProps) { return ( onUpdate({ musicPath: v })} placeholder="/music" className="w-64" /> onUpdate({ downloadPath: v })} placeholder="/downloads" className="w-64" /> ); }