import Container from 'components/Container'; import React from 'react'; import { Alert, Button, Modal, ProgressBar } from 'react-bootstrap'; export function UploadProgress(props) { const now = 100; return ( Uploading Files {now == 100 ? ( Upload Completed ) : ( )} ); }