mirror of
https://github.com/usatiuk/writer.git
synced 2025-10-29 00:17:48 +01:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { combineReducers } from "redux";
|
|
import { auth, IAuthState } from "~redux/auth/reducer";
|
|
|
|
export interface IAppState {
|
|
auth: IAuthState;
|
|
}
|
|
|
|
export const rootReducer = combineReducers({ auth });
|