import { useTranslation } from 'next-i18next' export const Author = ({ author = '' }) => { const { t } = useTranslation(['posts']) return (
{/*{author}*/}

FIXME: implement author bios
) }