import Image, { ImageProps } from 'next/image'; import React from 'react'; import useSettings from '../../../hooks/useSettings'; /** * The CachedImage component should be used wherever * we want to offer the option to locally cache images. * * It uses the `next/image` Image component but overrides * the `unoptimized` prop based on the application setting `cacheImages`. **/ const CachedImage: React.FC = (props) => { const { currentSettings } = useSettings(); return ; }; export default CachedImage;