import { Combobox, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, ComboboxTrigger, ComboboxValue, OptionType, } from '@/components/ui/combobox'; import React, { useState } from 'react'; const skills: OptionType[] = [ { value: 'javascript', label: 'JavaScript' }, { value: 'typescript', label: 'TypeScript' }, { value: 'react', label: 'React' }, { value: 'vue', label: 'Vue' }, { value: 'angular', label: 'Angular' }, { value: 'nodejs', label: 'Node.js' }, { value: 'python', label: 'Python' }, { value: 'java', label: 'Java' }, { value: 'csharp', label: 'C#' }, { value: 'go', label: 'Go' }, ]; export function ComboboxMultiple() { const [values, setValues] = useState([]); return ( No skill found. {skills.map((skill) => ( {skill.label} ))} ); }