next.js/test/integration/next-image-legacy/base-path/pages/index.js
index.js20 lines342 B
import React from 'react'
import Image from 'next/legacy/image'

const Page = () => {
  return (
    <div>
      <p>Home Page</p>
      <Image
        id="basic-image"
        src="/docs/test.jpg"
        width="400"
        height="400"
      ></Image>
      <p id="stubtext">This is the index page</p>
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN