import { Box, Typography } from '@material-ui/core' import { ReactElement } from 'react' import { CornerUpLeft } from 'react-feather' import ExpandableListItemActions from '../../components/ExpandableListItemActions' import ExpandableListItemKey from '../../components/ExpandableListItemKey' import ExpandableListItemLink from '../../components/ExpandableListItemLink' import { SwarmButton } from '../../components/SwarmButton' interface Props { uploadReference: string onUploadNewClick: () => void } export function PostUploadSummary({ uploadReference, onUploadNewClick }: Props): ReactElement { return ( <> Back to Upload The Swarm Gateway is graciously provided by the Swarm Foundation. This service is under development and provided for testing purposes only. Learn more at{' '} https://gateway.ethswarm.org/. ) }