examples/native-select-grouped.tsx
1import { NativeSelect } from "@/components/wensity/native-select";23export function NativeSelectGrouped() {4 return (5 <NativeSelect6 groups={[7 {8 label: "Frontend",9 options: [10 { value: "react", label: "React" },11 { value: "vue", label: "Vue" },12 ],13 },14 {15 label: "Backend",16 options: [17 { value: "nextjs", label: "Next.js" },18 { value: "nuxt", label: "Nuxt" },19 ],20 },21 ]}22 label="Framework"23 placeholder="Choose a framework"24 />25 );26}