rsnext/examples/image-legacy-component/pages/layout-responsive.tsx

20 lines
446 B
TypeScript
Raw Normal View History

import Image from 'next/legacy/image'
import ViewSource from '../components/view-source'
import mountains from '../public/mountains.jpg'
const Responsive = () => (
<div>
<ViewSource pathname="pages/layout-responsive.tsx" />
<h1>Image Component With Layout Responsive</h1>
<Image
alt="Mountains"
src={mountains}
layout="responsive"
width={700}
height={475}
/>
</div>
)
export default Responsive