next.js/test/integration/next-image-new/app-dir-image-from-node-modules/app/page.js
page.js19 lines319 B
import MyCoolImage from 'my-cool-image'

const Page = () => {
  return (
    <div>
      <h1>next/image from node_modules</h1>

      <MyCoolImage
        id="image-from-node-modules"
        width={1404}
        height={936}
        src="https://i.imgur.com/CgezKMb.jpg"
      />
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN