import React, { useState } from 'react' import Image from 'next/image' const ImageWithFallback = (props) => { const { src, fallbackSrc, ...rest } = props const [imgSrc, setImgSrc] = useState(src) return ( { setImgSrc(fallbackSrc) }} /> ) } export default ImageWithFallback