import React from "react"; import { Route, withRouter, RouteComponentProps, Link } from "react-router-dom"; import withImageList, { WithImageListProps } from "./containers/withImageList"; import { withTranslation, WithTranslation } from "react-i18next"; import ImageModal from "../view/imageRouteModal"; const ImageList: React.FC< WithImageListProps & WithTranslation & RouteComponentProps > = ({ imageList = [], t, history, location, match, isLoading }) => { return (