Some checks failed
Build & Deploy Mintel Blog / build-and-deploy (push) Failing after 2m19s
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import React from 'react';
|
|
|
|
const Image: React.FC<any> = ({ src, alt, ...props }) => {
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
return <img src={src} alt={alt} {...props} />;
|
|
};
|
|
|
|
export default Image;
|