next.js/test/integration/next-image-new/app-dir/app/rotated/page.js
page.js20 lines343 B
import Image from 'next/image'
import React from 'react'

const Page = () => {
  return (
    <div>
      <p>Hello World</p>
      <Image
        id="exif-rotation-image"
        src="/exif-rotation.jpg"
        width="75"
        height="100"
      />
      <p id="stubtext">This is the rotated page</p>
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN