File size: 433 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
  </>
)