rsnext/test/integration/image-component/default/pages/rotated.js

15 lines
289 B
JavaScript
Raw Normal View History

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" unsized />
<p id="stubtext">This is the rotated page</p>
</div>
)
}
export default Page