Browse Source

把bodyPart slice合并到store中

ddx 2 months ago
parent
commit
b6f94ffac3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/states/store.ts

+ 2 - 0
src/states/store.ts

@@ -2,12 +2,14 @@ import { configureStore } from '@reduxjs/toolkit';
 import userInfoReducer from './user_info';
 import viewSelectionReducer from './patient/viewSelection';
 import patientTypeReducer from './patientTypeSlice';
+import bodyPartReducer from './bodyPartSlice';
 
 const store = configureStore({
   reducer: {
     userInfo: userInfoReducer,
     viewSelection: viewSelectionReducer,
     patientType: patientTypeReducer,
+    bodyPart: bodyPartReducer,
   },
 });