import { Image } from '@chakra-ui/react'; import { RootState } from 'app/store'; import { useAppSelector } from 'app/storeHooks'; export default function InitialImageOverlay() { const initialImage = useAppSelector( (state: RootState) => state.generation.initialImage ); return initialImage ? ( ) : null; }