11 lines
369 B
TypeScript
11 lines
369 B
TypeScript
import { combineReducers } from "@reduxjs/toolkit";
|
|
import targetServiceReducer from "@/lib/features/targetService/targetServiceSlice";
|
|
import verificationReducer from "@/lib/features/verification/verificationSlice";
|
|
|
|
const rootReducer = combineReducers({
|
|
targetService: targetServiceReducer,
|
|
verification: verificationReducer,
|
|
});
|
|
|
|
export default rootReducer;
|