rsnext/test/integration/amphtml/pages/amp-script.js
JJ Kasper fa45fa0a60
Add export const config support and make withAmp a no-op (#7525)
* Add export const config support and make withAmp a no-op

* Use babel plugin for PageConfig

* Fix serverless-loader exports

* Add backwards compatibility for withAmp
2019-06-09 17:16:14 -07:00

21 lines
433 B
JavaScript

import Head from 'next/head'
export const config = { amp: true }
const date = new Date().toJSON()
export default () => (
<>
<Head>
<script
async
key='amp-timeago'
custom-element='amp-timeago'
src='https://cdn.ampproject.org/v0/amp-timeago-0.1.js'
/>
</Head>
<amp-timeago width='160' height='20' datetime={date} layout='responsive'>
{date}
</amp-timeago>
</>
)