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;
}
}