File size: 568 Bytes
87337b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"use client"
import globalReducer from "./reducers/global"
import { configureStore } from '@reduxjs/toolkit'
export * from "./provider"
export const makeStore = () => {
return configureStore({
reducer: {
global: globalReducer,
},
devTools: process.env.NODE_ENV !== "production",
})
}
// Infer the type of makeStore
export type AppStore = ReturnType<typeof makeStore>
// Infer the `RootState` and `AppDispatch` types from the store itself
export type RootState = ReturnType<AppStore['getState']>
export type AppDispatch = AppStore['dispatch']
|