Feat:Added the upload reducer in the store for re-renders

This commit is contained in:
Atharva Ombase
2025-04-19 18:56:57 +05:30
parent 96fc18ab80
commit afccce0be3
+2
View File
@@ -1,9 +1,11 @@
// src/redux/store.js
import { configureStore } from "@reduxjs/toolkit";
import pathReducer from "./pathSlice";
import setIsUploadingReducer from "./UploadStatusSlice";
export const store = configureStore({
reducer: {
path: pathReducer,
upload: setIsUploadingReducer,
},
});