export interface CtaBannerBlockAttributes { heading: string body: string inverted: boolean items: unknown[] } interface CtaBannerBlockProps { attributes?: CtaBannerBlockAttributes preview?: boolean } export function CtaBannerBlock({ attributes }: CtaBannerBlockProps) { // TODO: implémenter le rendu du bloc "__BLOCK_NAMESPACE__/cta-banner". return (
{JSON.stringify(attributes, null, 2)}
) }