+ {/* Progress bar */}
+ {isFailed ? null : (
+
+ )
+ }
+
+ {/* Uploading info text */}
+ {isFailed ? (
+
+ ) :
+ (isCompleted ? (
+
+ ) :
+ (
+
+
{formatBytes((fileSize * uploadProgress) / 100)} of {formatBytes(fileSize)}
+
Uploading... {uploadProgress}%
+
+ )
+ )
+ }
+