import React, { FC, HTMLAttributes } from 'react'; export interface HeroBackgroundProps extends HTMLAttributes { /** Un testo alternativo per descrivere l'immagine mostrata */ alt: string; /** L'URI dell'immagine da mostrare */ src: string; /** Il titolo dell'immagine */ title?: string; testId?: string; } export const HeroBackground: FC = ({ alt, testId, ...attributes }) => { return (
{alt}
); };