import { formatDate } from '@/lib/helpers' import { NextSeo } from 'next-seo' import Link from 'next/link' import React, { useEffect } from 'react' import 'highlight.js/styles/atom-one-dark.css' import hljs from 'highlight.js' function Article ({ attributes, html }) { useEffect(() => { hljs.highlightAll() }, [attributes, html]) return ( <>

{attributes.title}

Back... {attributes.pubdate &&

{formatDate(attributes.pubdate)}

}
{attributes.tags &&

Tags: {attributes.tags.join(', ')}

}
) } export default Article