File size: 171 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { useAmp } from 'next/amp'
export const config = { amp: 'hybrid' }
export default () => {
const isAmp = useAmp()
return `Hello ${isAmp ? 'AMP' : 'others'}`
}
|
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { useAmp } from 'next/amp'
export const config = { amp: 'hybrid' }
export default () => {
const isAmp = useAmp()
return `Hello ${isAmp ? 'AMP' : 'others'}`
}
|