rsnext/test/integration/amphtml/pages/use-amp-hook.js

7 lines
166 B
JavaScript
Raw Normal View History

import { useAmp, withAmp } from 'next/amp'
export default withAmp(() => {
const isAmp = useAmp()
return `Hello ${isAmp ? 'AMP' : 'others'}`
}, { hybrid: true })