import * as swarmCid from '@ethersphere/swarm-cid' import { Box } from '@material-ui/core' import { ReactElement } from 'react' import { DocumentationText } from '../../components/DocumentationText' import ExpandableListItemKey from '../../components/ExpandableListItemKey' import ExpandableListItemLink from '../../components/ExpandableListItemLink' interface Props { isWebsite?: boolean hash: string } export function AssetSummary({ isWebsite, hash }: Props): ReactElement { return ( <> {isWebsite && ( )} 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/. ) }