Skip to content
Snippets Groups Projects
index.ts 237 B
Newer Older
Hugo BAYOUD's avatar
Hugo BAYOUD committed
import { ActionReducerMap } from "@ngrx/store";
import { authReducer, AuthState } from "./reducers/auth.reducers";

export interface State {
	auth: AuthState;
}

export const reducersMap: ActionReducerMap<State> = {
	auth: authReducer
};