// @flow import React from 'react'; import Button from 'component/button'; import FileThumbnail from 'component/fileThumbnail'; 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...
  • ); }