starter-blog/components/Image.js

7 lines
159 B
JavaScript
Raw Permalink Normal View History

import NextImage from 'next/image'
// eslint-disable-next-line jsx-a11y/alt-text
const Image = ({ ...rest }) => <NextImage {...rest} />
export default Image