'use client' import { Section } from '../types' import { Input } from '../../ui/input' import { Label } from '../../ui/label' interface SectionSettingsPanelProps { section: Section onChange: (section: Section) => void } export function SectionSettingsPanel({ section, onChange }: SectionSettingsPanelProps) { return (