Add basic progress & LMS upload.

This commit is contained in:
Patrick Fic
2025-10-14 14:13:30 -07:00
parent 7fe1ea65f2
commit 8d60d9776c
8 changed files with 184 additions and 121 deletions

View File

@@ -14,3 +14,8 @@ export const selectUploadError = createSelector(
[selectPhotosState],
(photos) => photos.uploadError
);
export const selectUploadProgress = createSelector(
[selectPhotosState],
(photos) => photos.progress
);