import { useState } from 'react'; import { ComboBox } from '@common/components/ui/ComboBox'; const Section = ({ title, desc, children }: { title: string; desc?: string; children: React.ReactNode }) => (

{title}

{desc &&

{desc}

}
{children}
); const OPTIONS = [ { value: 'prediction', label: '확산 예측' }, { value: 'hns', label: 'HNS 분석' }, { value: 'aerial', label: '항공 방제' }, { value: 'weather', label: '해양 기상' }, { value: 'scat', label: 'SCAT 조사' }, ]; const ComboBoxSection = () => { const [value, setValue] = useState('prediction'); return (

선택값: {value}

); }; export default ComboBoxSection;