import { BlocksRenderer } from "@strapi/blocks-react-renderer"; import Button from "../button"; import styles from "./style.module.scss"; export default function ArticleBlock({title, content, link, className, ...props}) { return (

{title}

{content ? : null}
); }