'use client';
import { useTranslations } from '@/core/lib/translations';
import { cn } from '@/core/lib/utils';
interface DeliveryMethodStepProps {
onSelect: (method: 'shipping' | 'pickup') => void;
className?: string;
}
export function DeliveryMethodStep({ onSelect, className }: DeliveryMethodStepProps) {
const t = useTranslations('checkout');
return (
);
}