mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
import { configureStore } from "@reduxjs/toolkit";
|
|
import installedBSReducer from './reducers/bs-versions-installed.reducer'
|
|
|
|
const store = configureStore({
|
|
reducer:{
|
|
installedBSReducer,
|
|
}
|
|
});
|
|
|
|
export default store;
|
|
|
|
export interface ReducerAction<T> {
|
|
type: string,
|
|
payload?: T
|
|
} |