Ivan Li
3932a2b612
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 8m21s
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import NextImage, { ImageProps } from 'next/image';
|
|
|
|
const Image = ({ ...rest }: ImageProps) => <NextImage {...rest} />;
|
|
|
|
export default Image;
|