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

23 lines
497 B
TypeScript

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