import React from 'react'; import Image from 'next/image'; import {ButtonImg, Button } from '../../../UI' type PizzaBlockProps = { id: string; title: string; price: number; imageUrl: string; sizes: number[]; types: number[]; rating: number; }; export const PizzaBlock: React.FC = ({ id, title, src, alt, compound, price, }) => { const onClickAdd = () => { console.log('ok'); }; return (
  • {alt}

    {title}

    {compound}

    Видос

    {price}

  • ); };