import Link from '@/components/Link'; import clsx from 'clsx'; import BlogAuthors from '@/components/blog/Authors'; export default function PostItem({ title, category, slug, date, children, authors, wide = false }) { return (
{title}
{children}
); }