next.js/test/integration/next-image-new/app-dir/app/invalid-fill-width/page.js
page.js30 lines513 B
import React from 'react'
import Image from 'next/image'

const Page = () => {
  return (
    <div>
      <h1>Fill Mode</h1>
      <div
        id="image-container-1"
        style={{
          height: '300px',
          width: '300px',
          position: 'relative',
          overflow: 'hidden',
        }}
      >
        <Image
          id="fill-image-1"
          src="/wide.png"
          width="500px"
          height="400px"
          fill
        />
      </div>
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN