import { NextSeo } from 'next-seo' import React from 'react' function Article ({ attributes, html }) { return (

{attributes.title}

{attributes.desc}

{attributes.pubdate &&

{attributes.pubdate}

}
) } export default Article