next.js/test/integration/next-image-legacy/basic/pages/errors.js
errors.js20 lines351 B
import React from 'react'
import Image from 'next/legacy/image'

const Errors = () => {
  return (
    <div>
      <p id="stubtext">This is a page with errors</p>
      <Image
        id="nonexistant-host"
        host="nope"
        src="wronghost.jpg"
        width={300}
        height={400}
      ></Image>
    </div>
  )
}

export default Errors
Quest for Codev2.0.0
/
SIGN IN