'use client' import { Leaf } from 'lucide-react' interface CropSelectorProps { crops: string[] selectedCrop: string onCropChange: (crop: string) => void } export default function CropSelector({ crops, selectedCrop, onCropChange, }: CropSelectorProps) { return (
) }