import { useState } from "react"; import { default as NextImage, ImageProps } from "next/image"; const Image = ({ className, ...props }: ImageProps) => { const [loaded, setLoaded] = useState(false); return ( setLoaded(true)} {...props} /> ); }; export default Image;