import ArticleBlock from "../articleBlock"; import ImageBlock from "../imageBlock"; import styles from "./style.module.scss"; export default function PressBlock({ left: {type: leftType, ...left}, right: {type: rightType, ...right}, ...props }) { return (
{ leftType ? leftType === 'article' ? : : null } { rightType ? rightType === 'article' ? : : null }
); }