next.js/test/integration/next-image-new/middleware/pages/index.js
index.js18 lines373 B
import Image from 'next/image'

export default function Page() {
  return (
    <>
      <h1>Its Works</h1>
      <Image
        alt="empty"
        src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
        width={400}
        height={400}
      />

      <Image alt="small-image" src="/small.jpg" width={15} height={15} />
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN