import { location, PlayerAudio } from "@heydovetail/ui-components"; import React from "react"; import { AttachmentCard, Props as AttachmentCardProps } from "../AttachmentCard"; import { AttachmentDownloadUrlSubscribe } from "../Shared/AttachmentDownloadUrlSubscribe"; type Props = AttachmentCardProps; export class AttachmentAudio extends React.PureComponent { public render() { return ( {downloadUrl => ( )} ); } }