feat: Projekt von JavaScript zu TypeScript migriert
This commit is contained in:
11
store/rootReducer.ts
Normal file
11
store/rootReducer.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
// store/rootReducer.ts
|
||||
import { combineReducers } from "redux";
|
||||
import variablesReducer from "./variablesSlice";
|
||||
import authReducer from "./authSlice";
|
||||
|
||||
const rootReducer = combineReducers({
|
||||
variables: variablesReducer,
|
||||
auth: authReducer,
|
||||
});
|
||||
|
||||
export default rootReducer;
|
||||
Reference in New Issue
Block a user