瀏覽代碼

把bodyPart slice合并到store中

ddx 4 月之前
父節點
當前提交
b6f94ffac3
共有 1 個文件被更改,包括 2 次插入0 次删除
  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,
   },
 });