rsnext/test/integration/next-image-legacy/base-path/pages/layout-fill.js
Steven 241195ddd6
BREAKING CHANGE: Rename next/image to next/legacy/image & rename next/future/image to next/image (#41399)
This PR introduces breaking changes by renaming components.

- Rename `next/image` to `next/legacy/image`
- Rename `next/future/image` to `next/image`

The diff is very confusing because both components are very similar so git got confused.
2022-10-14 01:59:22 +00:00

26 lines
635 B
JavaScript

import React from 'react'
import Image from 'next/legacy/image'
const Page = () => {
return (
<div>
<p>Layout Fill</p>
<div style={{ position: 'relative', width: '600px', height: '350px' }}>
<Image id="fill1" src="/docs/wide.png" layout="fill" />
</div>
<p>Layout Fill</p>
<div style={{ position: 'relative', width: '100vw', height: '100vh' }}>
<Image
id="fill2"
src="/docs/wide.png"
layout="fill"
objectFit="cover"
objectPosition="left center"
/>
</div>
<p>Layout Fill</p>
</div>
)
}
export default Page