import { Picker } from '@/components/ui/picker'; import React, { useState } from 'react'; export function PickerSections() { const [value, setValue] = useState(''); const sections = [ { title: 'Fruits', options: [ { label: 'Apple', value: 'apple' }, { label: 'Banana', value: 'banana' }, { label: 'Orange', value: 'orange' }, ], }, { title: 'Vegetables', options: [ { label: 'Carrot', value: 'carrot' }, { label: 'Broccoli', value: 'broccoli' }, { label: 'Spinach', value: 'spinach' }, ], }, ]; return ( ); }