import React from "react"; import { BlockAnchor, BlockBody } from "../styles"; type BlockLinkProps = { children?: React.ReactNode; as?: undefined; } & React.LinkHTMLAttributes; const BlockLink = ({ children, ...attributes }: BlockLinkProps) => { return ( {children} ); }; export default BlockLink;