import type { MenuItem } from '@/data/menu' type Props = { item: MenuItem lang: string currency: string index: number } export default function MenuItemRow({ item, lang, currency, index }: Props) { const l = lang as 'tr' | 'en' return (
{/* Emoji circle */}
{item.emoji}
{/* Text */}

{item.name[l]}

{item.description[l]}

{/* Price */} {currency}{item.price}
) }