-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstore.js
More file actions
16 lines (15 loc) · 687 Bytes
/
store.js
File metadata and controls
16 lines (15 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { configureStore } from "@reduxjs/toolkit";
import deviceInformationReducer from "./features/deviceInformation/deviceInformationSlice";
import deviceInteractionReducer from "./features/deviceInteraction/deviceInteractionSlice";
import gamepadReducer from "./features/deviceInteraction/gamepadSlice";
import settingsReducer from "./features/settings/settingsSlice";
import workflowReducer from "./features/workflowEditor/workflowSlice";
export default configureStore({
reducer: {
deviceInformation: deviceInformationReducer,
deviceInteraction: deviceInteractionReducer,
settings: settingsReducer,
workflow: workflowReducer,
gamepad: gamepadReducer,
},
});