"use client"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/shared/components/ui/select"; type SectorOptions = { value: string; label: string; }; const sectorOptions: SectorOptions[] = [ { value: "Peneliti/Akademisi", label: "Peneliti/Akademisi", }, { value: "Pemerintahan", label: "Pemerintahan", }, { value: "Media", label: "Media", }, { value: "Industri/Bisnis", label: "Industri/Bisnis", }, { value: "Organisasi Non Profit/Sosial", label: "Organisasi Non Profit/Sosial", }, ]; export default function SelectSector({ value, onChange, name = "sektor", }: { value: string; onChange: (v: string) => void; name: string; }) { return ( ); }