next-image.tsx8 lines · main
| 1 | import React from 'react' |
| 2 | |
| 3 | function MockImage(props: Record<string, unknown>) { |
| 4 | // eslint-disable-next-line @next/next/no-img-element, jsx-a11y/alt-text |
| 5 | return <img {...(props as React.ImgHTMLAttributes<HTMLImageElement>)} /> |
| 6 | } |
| 7 | |
| 8 | export default MockImage |