import { Link } from 'react-router-dom'; type BlogArticleLayoutProps = { title: string; description?: string; children: React.ReactNode; }; const BlogArticleLayout = ({ title, description, children, }: BlogArticleLayoutProps) => (
Back to blog

Blog Article

{title}

{description ? (

{description}

) : null}
{children}
); export default BlogArticleLayout;