11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import {configureStore} from "@reduxjs/toolkit";
|
|
import counterReducer from "../components/CounterSlice";
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
counter: counterReducer,
|
|
},
|
|
});
|
|
|
|
export type RootState = ReturnType<typeof store.getState>;
|
|
export type AppDispatch = typeof store.dispatch; |