Files
Skycrate/Frontend/src/store/store.js
T
2025-04-19 18:56:57 +05:30

12 lines
288 B
JavaScript

// 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,
},
});