import React from 'react'; import Image from 'next/image'; import {ButtonImg, Button } from '../../../UI'; import classNames from 'classnames'; type PizzaBlockProps = { id: string; title: string; price: number; compound: string; imageUrl: string; }; export const PizzaBlock: React.FC = ({ id, title, imageUrl, price, compound, }) => { const onClickAdd = () => { console.log('ok'); }; return (product_card"}>
{title}

{title}

{compound}

onClickAdd()}>Видос

{price}

); };