import React from 'react'; import ImageToImagePanel from './ImageToImagePanel'; import ImageToImageDisplay from './ImageToImageDisplay'; import ImageGallery from '../../gallery/ImageGallery'; import { RootState, useAppSelector } from '../../../app/store'; export default function ImageToImage() { const shouldShowGallery = useAppSelector( (state: RootState) => state.gallery.shouldShowGallery ); return (
); }