import ImageBlock from '../imageBlock'; import EditionBlock from './editionBlock'; import styles from './style.module.scss'; export default async function EditionElement(props) { return (
{props.href ? ( {props.flyerAlt}/ ) : ( ) } {props.blocks.slice(0, 6).map(block => ( ))} {props.full ? : null}
); }