Skip to content
Snippets Groups Projects
reducer.ts 266 B
Newer Older
import { DARSState, INITIAL_DARS_STATE } from '@app/dars/store/state';
import { Action } from '@ngrx/store';

export function darsReducer(
  state = INITIAL_DARS_STATE,
  action: Action,
): DARSState {
  switch (action.type) {
    default:
      return state;
  }
}