rsnext/test/integration/amphtml-ssg/pages/amp.js
JJ Kasper c14d983d54
Ensure hybrid AMP works correctly with SSG (#11205)
* Ensure hybrid AMP works correctly with SSG

* Strip AMP from query when not needed
2020-03-20 09:46:52 +01:00

22 lines
375 B
JavaScript

import { useAmp } from 'next/amp'
export const config = {
amp: true,
}
export const getStaticProps = () => {
return {
props: {
hello: 'hello',
random: Math.random(),
},
}
}
export default ({ hello, random }) => (
<>
<p id="use-amp">useAmp: {useAmp() ? 'yes' : 'no'}</p>
<p id="hello">{hello}</p>
<p id="random">{random}</p>
</>
)