Can someone help with the TypeScript error:
Property 'srcset' does not exist on type 'DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>'.
I can't figure out what is going wrong. I also tried this solution, but no result:
declare global {
namespace JSX {
interface IntrinsicElements {
srcset: React.DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>
}
}
}