Feat:Added redux for the hdfspath to change the uplaod the file onto folder

This commit is contained in:
Atharva Ombase
2025-04-16 15:22:12 +05:30
parent 00f6e28207
commit 4ab49db6af
+9
View File
@@ -0,0 +1,9 @@
// src/redux/store.js
import { configureStore } from "@reduxjs/toolkit";
import pathReducer from "./pathSlice";
export const store = configureStore({
reducer: {
path: pathReducer,
},
});