import type { MenuItem } from '@/data/menu' type Props = { item: MenuItem lang: string currency: string index: number isLast?: boolean } export default function MenuItemRow({ item, lang, currency, index, isLast }: Props) { const l = lang as 'tr' | 'en' return (
{item.description[l]}
)}