import React from 'react' import { Img, ImgProps } from 'react-image' import { isBrowser } from '../utils' export const GracefulImage = (props: ImgProps) => { if(isBrowser) { return } else { // @ts-ignore (must use the appropriate subset of props for if using SSR) return } }