Procházet zdrojové kódy

把bodyPart slice合并到store中

ddx před 4 měsíci
rodič
revize
b6f94ffac3
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  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,
   },
 });