// @flow import React from 'react'; import Button from 'component/button'; import CardMedia from 'component/cardMedia'; type Props = { params: UpdatePublishFormData, progress: string, xhr?: () => void, }; export default function WebUploadItem(props: Props) { const { params, progress, xhr } = props; return (
  • {params.title}
    {xhr && (
    )}

    lbry://{params.name}

    Uploading...
  • ); }