import { Box, Typography } from '@material-ui/core' import { ReactElement } from 'react' import ExpandableListItemKey from '../../components/ExpandableListItemKey' import ExpandableListItemLink from '../../components/ExpandableListItemLink' interface Props { hash: string } export function AssetSummary({ hash }: Props): ReactElement { return ( <> 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/. ) }