File size: 339 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { configureStore } from "@reduxjs/toolkit";
import userStore from "./user";
import playlist from "./playlist";
import currentTrackStore from "./currentTrack";
const appStore = configureStore({
reducer: {
user: userStore.reducer,
playlist: playlist,
currentTrack: currentTrackStore,
},
});
export default appStore;
|