Skip to content

Instantly share code, notes, and snippets.

@Tecayehuatl
Created May 25, 2020 04:41
Show Gist options
  • Save Tecayehuatl/8bb263057051c1ff1c295597b113becb to your computer and use it in GitHub Desktop.
Save Tecayehuatl/8bb263057051c1ff1c295597b113becb to your computer and use it in GitHub Desktop.
import { ActionReducerMap, MetaReducer } from '@ngrx/store';
import { IAppState } from './app.interface';
import { AppReducer } from './reducers/app.reducers';
export const reducers: ActionReducerMap<IAppState> = {
AppState: AppReducer,
};
export const metaReducers: MetaReducer<IAppState>[] = [];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment