Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
179 Bytes
import { configureStore } from "@reduxjs/toolkit";
import homeSlice from "./homeSlice";
export const store = configureStore({
reducer: {
home: homeSlice,
},
});