import { location, PlayerVideo, BORDER_RADIUS } 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 AttachmentVideo extends React.PureComponent { public render() { return ( {downloadUrl => ( {downloadUrl.type == "available" ? ( ) : null} )} ); } }