質問編集履歴
1
コードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -96,6 +96,32 @@
|
|
96
96
|
|
97
97
|
|
98
98
|
|
99
|
+
```js
|
100
|
+
|
101
|
+
// src/reducers/root_reducers.ts
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
import { combineReducers } from 'redux'
|
106
|
+
|
107
|
+
import currentUserReducer from './session_reducer';
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
const rootReducers = combineReducers({
|
112
|
+
|
113
|
+
user: currentUserReducer.currentUser
|
114
|
+
|
115
|
+
});
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
export default rootReducers;
|
120
|
+
|
121
|
+
```
|
122
|
+
|
123
|
+
|
124
|
+
|
99
125
|
### 実現したいこと
|
100
126
|
|
101
127
|
エラーの解消法をご教示頂きたいです。
|