12 lines
325 B
TypeScript
Executable File
12 lines
325 B
TypeScript
Executable File
import { configureStore } from "@reduxjs/toolkit";
|
|
import seleniumTasksReducer from "./slices/seleniumTaskSlice";
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
seleniumTasks: seleniumTasksReducer,
|
|
},
|
|
});
|
|
|
|
export type RootState = ReturnType<typeof store.getState>;
|
|
export type AppDispatch = typeof store.dispatch;
|