possible type fix

This commit is contained in:
Cory Dransfeldt 2022-06-07 12:59:19 -07:00
parent 84d56cbeaa
commit 5c1a068e2f

View file

@ -1,5 +1,6 @@
import NextImage, { ImageProps } from 'next/image'
import { ItemRef } from 'react-photoswipe-gallery'
const Image = ({ ...rest }: ImageProps) => <NextImage {...rest} />
const Image = ({ ...rest }: ImageProps & { ref?: ItemRef }) => <NextImage {...rest} />
export default Image